aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Wieczorek <p.wieczorek2@samsung.com>2019-07-08 14:24:19 +0200
committerPawel Wieczorek <p.wieczorek2@samsung.com>2019-07-08 14:24:35 +0200
commit660f496429b43a02e0c254ae49ce63163f6f2b27 (patch)
treecfedda8951291a5078e73d572604abe0adc200c3
parent056ef4c18a177e179ce288247f67cf23dad47c18 (diff)
k8s: Make convenience targets CI-friendly
Previously "clean" target failed if there were no build artifacts. Now their absence is ignored. Issue-ID: SECCOM-235 Change-Id: I47beb2754a893e8b7453611116b4da2e516cca90 Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
-rw-r--r--test/security/k8s/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/security/k8s/Makefile b/test/security/k8s/Makefile
index 05fbba047..b42e48acc 100644
--- a/test/security/k8s/Makefile
+++ b/test/security/k8s/Makefile
@@ -18,7 +18,7 @@ test:
go test $(PROJECT)/...
clean:
- rm $(BIN_DIR)/$(BIN)
- rmdir $(BIN_DIR)
+ -rm $(BIN_DIR)/$(BIN)
+ -rmdir $(BIN_DIR)
.PHONY: all run build test clean $(BIN)