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

Этот коммит содержится в:
Jesús Espino
2017-09-14 08:39:35 +02:00
коммит произвёл Christopher Speller
родитель b4d662cce4
Коммит 9fc7845112

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

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