Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Fixed clean target in Makefile
Browse files Browse the repository at this point in the history
As there are no longer any Go files in the project root we need to
point go clean towards something that does contain Go files. Not doing
this will result in an error:

  $ go clean
  can't load package: package github.com/fluxcd/helm-operator: unknown
  import path "github.com/fluxcd/helm-operator": cannot find module
  providing package github.com/fluxcd/helm-operator
  • Loading branch information
hiddeco committed Aug 7, 2019
1 parent 95193c5 commit 87f0a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ DOCS_PORT:=8000
all: $(GOBIN)/bin/helm-operator build/.helm-operator.done

clean:
go clean
go clean ./cmd/helm-operator
rm -rf ./build
rm -f test/bin/kubectl test/bin/helm test/bin/kind

Expand Down

0 comments on commit 87f0a34

Please sign in to comment.