From c09426df407001c69d7adbe3f532bce945d755a4 Mon Sep 17 00:00:00 2001 From: Haardik Dharma Date: Fri, 2 Jul 2021 03:31:31 +0530 Subject: [PATCH] Add confirmation message to build plugin. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 3f082346..001223a9 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,7 @@ endif .PHONY: server server: ifneq ($(HAS_SERVER),) + $(info Are you sure you want to build the plugin with an id of "com.mattermost.plugin-starter-template"? Consider editing plugin.json to configure your project.) mkdir -p server/dist; ifeq ($(MM_DEBUG),) cd server && env GOOS=linux GOARCH=amd64 $(GO) build $(GO_BUILD_FLAGS) -o dist/plugin-linux-amd64;