Skip to content

Commit

Permalink
update(Makefile): do not error if file does not exist when running cl…
Browse files Browse the repository at this point in the history
…ean target

It allows to run commands like: make clean && make falcoctl even
when falcoctl binary does not exist.

Signed-off-by: alacuku <[email protected]>
  • Loading branch information
alacuku authored and poiana committed Nov 3, 2023
1 parent bea50ef commit b5363f6
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 @@ -80,4 +80,4 @@ docker:

.PHONY: clean
clean:
@rm falcoctl
@rm falcoctl || true

0 comments on commit b5363f6

Please sign in to comment.