forked from mirrors/easyappointments
Only execute the compile command if the assets/vendor folder is not present
This commit is contained in:
parent
7993eb944e
commit
e2b309adef
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ echo "➜ Install NPM Dependencies"
|
||||||
[[ -d node_modules ]] || npm install
|
[[ -d node_modules ]] || npm install
|
||||||
|
|
||||||
echo "➜ Build Project Assets"
|
echo "➜ Build Project Assets"
|
||||||
npx gulp compile
|
[[ -d assets/vendor ]] || npx gulp compile
|
||||||
|
|
||||||
echo "➜ Listen To Incoming Requests"
|
echo "➜ Listen To Incoming Requests"
|
||||||
php-fpm
|
php-fpm
|
||||||
|
|
Loading…
Reference in a new issue