From c52056cb892875bff4297e5a146c8805b85d8f1a Mon Sep 17 00:00:00 2001 From: Giuseppe Valente <7AC@users.noreply.github.com> Date: Wed, 5 Apr 2017 23:38:44 -0700 Subject: [PATCH] Force remove templates (#3925) --- libbeat/scripts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbeat/scripts/Makefile b/libbeat/scripts/Makefile index 47d6c88a6c1..e6d6bdb87b9 100755 --- a/libbeat/scripts/Makefile +++ b/libbeat/scripts/Makefile @@ -118,7 +118,7 @@ clean:: ## @build Cleans up all files generated by the build steps # Clean index pattern rm -f $(PWD)/_meta/kibana/index-pattern/${BEAT_NAME}.json # Remove temp templates - -rm ${BEAT_NAME}.template*.json + -rm -f ${BEAT_NAME}.template*.json .PHONY: ci ci: ## @build Shortcut for continuous integration. This should always run before merging.