Avoid error linking client dist directory every time (#7438)

This commit is contained in:
Jesús Espino
2017-09-14 08:39:35 +02:00
committed by Christopher Speller
parent b4d662cce4
commit 9fc7845112

View File

@@ -374,7 +374,9 @@ run-cli: start-docker
run-client:
@echo Running mattermost client for development
ln -s $(BUILD_WEBAPP_DIR)/dist client
@if [ ! -e client ]; then \
ln -s $(BUILD_WEBAPP_DIR)/dist client; \
fi
cd $(BUILD_WEBAPP_DIR) && $(MAKE) run
run-client-fullmap: