Fixed stop error on webapp makefile (#22662)

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Guilherme Gomes
2023-04-10 12:44:00 -03:00
коммит произвёл GitHub
родитель dd67376097
Коммит 2cd7313179

Просмотреть файл

@@ -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