From b5363f6908216f37bebc6b1793563dce17555f66 Mon Sep 17 00:00:00 2001 From: alacuku Date: Thu, 2 Nov 2023 10:45:54 +0100 Subject: [PATCH] update(Makefile): do not error if file does not exist when running clean target It allows to run commands like: make clean && make falcoctl even when falcoctl binary does not exist. Signed-off-by: alacuku --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85d0b8df..5311850b 100644 --- a/Makefile +++ b/Makefile @@ -80,4 +80,4 @@ docker: .PHONY: clean clean: - @rm falcoctl + @rm falcoctl || true