From 72ed9dbccee907301bbdb12b09c8b24673191a2f Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 18 Nov 2020 12:51:37 -0500 Subject: [PATCH] fix: only clean things that were built This otherwise break non-golang plugins. --- common.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mk b/common.mk index 4f11a8a53..f101ffada 100644 --- a/common.mk +++ b/common.mk @@ -19,7 +19,7 @@ build-in-docker: clean bash -c "GO_ARGS='$(GO_ARGS)' make -j4 $(GO_PLUGIN_MAKE_TARGET)" || exit $$? clean: - rm -rf commands subcommands triggers prop + rm -rf $(BUILD) find . -xtype l -delete commands: **/**/commands.go