Use npx to run gulp instead of $(npm bin)

This commit is contained in:
Kevin MacMartin 2022-06-14 14:39:07 -04:00
parent db7deb0fdc
commit 0e7f8ce4f4

View file

@ -101,7 +101,7 @@ msg "Running: ${c_m}npm install --production"
npm install --production || error "${c_m}npm install --production$c_w exited with an error status"
msg "Running: ${c_m}gulp --production"
"$(npm bin)/gulp" --production || error "${c_m}gulp --production$c_w exited with an error status"
npx gulp --production || error "${c_m}gulp --production$c_w exited with an error status"
if (( artisan_down )); then
msg "Running: ${c_m}php artisan up"