From de5440d979e58181d924ee356ded17532518b303 Mon Sep 17 00:00:00 2001 From: Hanzei <16541325+hanzei@users.noreply.github.com> Date: Wed, 5 Dec 2018 19:13:00 +0100 Subject: [PATCH] Depreciate fullmap target (#9963) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4cc4ff061d..d5bf0f7ed5 100644 --- a/Makefile +++ b/Makefile @@ -446,14 +446,14 @@ run-client: ## Runs the webapp. ln -nfs $(BUILD_WEBAPP_DIR)/dist client cd $(BUILD_WEBAPP_DIR) && $(MAKE) run -run-client-fullmap: ## Runs the webapp with source code mapping (slower; better debugging). - @echo Running mattermost client for development with FULL SOURCE MAP +run-client-fullmap: ## Legacy alias to run-client + @echo Running mattermost client for development - cd $(BUILD_WEBAPP_DIR) && $(MAKE) run-fullmap + cd $(BUILD_WEBAPP_DIR) && $(MAKE) run run: check-prereqs run-server run-client ## Runs the server and webapp. -run-fullmap: run-server run-client-fullmap ## Same as run but with a full sourcemap for client. +run-fullmap: run-server run-client ## Legacy alias to run stop-server: ## Stops the server. @echo Stopping mattermost