Skip to content

Commit bf8c6ba

Browse files
committed
Makefile: fix go clean
go complained: clean -cache cannot be used with package arguments
1 parent 1865b2b commit bf8c6ba

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ test: ## Test all targets
2020
go test -timeout 1h ./...
2121

2222
clean: ## Clean previous builds
23-
go clean -cache ./..
23+
go clean -cache
24+
go clean ./..
2425
rm -f objectbox-generator
2526
rm -f objectbox-generator.exe
2627
rm -rf third_party/flatbuffers-c-bridge/cmake-build

0 commit comments

Comments
 (0)