summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Kraft <mkraft@users.noreply.github.com>2017-11-10 15:25:05 -0500
committerJoram Wilander <jwawilander@gmail.com>2017-11-10 15:25:05 -0500
commit91544f0c6d5d1fe6f03bbdcaf1523a95b0e38c5b (patch)
tree729b29fc7c50143404c37da57cc483aacdf7fd1b /Makefile
parentbdd47539bff0f73f068f1a48d5695b13901654ad (diff)
downloadchat-91544f0c6d5d1fe6f03bbdcaf1523a95b0e38c5b.tar.gz
chat-91544f0c6d5d1fe6f03bbdcaf1523a95b0e38c5b.tar.bz2
chat-91544f0c6d5d1fe6f03bbdcaf1523a95b0e38c5b.zip
Fixes running webapp from custom location using ENV variable. (#7809)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e4cd6e3ed..b141b2ae8 100644
--- a/Makefile
+++ b/Makefile
@@ -370,9 +370,7 @@ run-cli: start-docker
run-client:
@echo Running mattermost client for development
- @if [ ! -e client ]; then \
- ln -s $(BUILD_WEBAPP_DIR)/dist client; \
- fi
+ ln -nfs $(BUILD_WEBAPP_DIR)/dist client
cd $(BUILD_WEBAPP_DIR) && $(MAKE) run
run-client-fullmap: