Merge pull request #15 from alexAubin/enh-explain-gulp-watch

[enh] Explain what gulp watch is doing and why it keeps running
This commit is contained in:
Laurent Peuch 2016-12-03 00:22:10 +01:00 committed by GitHub
commit 0dd02b342f

View file

@ -274,6 +274,13 @@ elif [ "$1" = "use-git" ]; then
# Symlink from Git repository
sudo ln -s -f /vagrant/yunohost-admin/src /usr/share/yunohost/admin
echo "--------------------------------------------------------"
echo "Launching gulp ... "
echo "NB : This command will keep running and watch for changes"
echo " in the folder /vagrant/yunohost-admin/src, such that you"
echo "don't need to re-run npm yourself everytime you change"
echo "something !"
echo "--------------------------------------------------------"
sudo su -c "gulp watch --dev" vagrant
;;