From 2cd73131797283673e330f775addb70a6c7fff48 Mon Sep 17 00:00:00 2001 From: Guilherme Gomes <80290114+gomessguii@users.noreply.github.com> Date: Mon, 10 Apr 2023 12:44:00 -0300 Subject: [PATCH] Fixed stop error on webapp makefile (#22662) Co-authored-by: Mattermost Build --- webapp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/Makefile b/webapp/Makefile index 7e7fe31f68..b921397be5 100644 --- a/webapp/Makefile +++ b/webapp/Makefile @@ -17,7 +17,7 @@ stop: ## Stops webpack ifeq ($(OS),Windows_NT) wmic process where "Caption='node.exe' and CommandLine like '%webpack%'" call terminate else - @pkill -f webpack || true + -@pkill -f webpack || true endif .PHONY: restart