Skip to content

Commit

Permalink
Fix Makefile (don't call "clean" during "all")
Browse files Browse the repository at this point in the history
  • Loading branch information
grongor committed Mar 31, 2022
1 parent a0d98e4 commit 09de88a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
SHELL=bash

.PHONY: all
all: clean fmt mocks test install docker integration

.PHONY: clean
clean:
rm -rf mocks
all: fmt mocks test install docker integration

.PHONY: fmt
fmt:
Expand All @@ -31,3 +27,7 @@ docker:
.PHONY: integration
integration: docker install
./hack/run-e2e.sh

.PHONY: clean
clean:
rm -rf mocks

0 comments on commit 09de88a

Please sign in to comment.