Use sh shell instead of fish for watch script
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadence Ember 2020-10-21 22:21:21 +13:00
parent 64c3e18788
commit a56c42311f
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
"main": "build.js",
"scripts": {
"build": "node build.js",
"watch": "fish -c 'while true; echo -n \"Build started at \"; date; npm run build; inotifywait (find src -type f) build.js -e close_write -qq; end'",
"watch": "sh -c 'while true; do echo -n \"Build started at \"; date; npm run build; inotifywait $(find src -type f) build.js spec.js package.json -e close_write -qq; done'",
"rebuild": "rm build -rf && node build.js"
},
"keywords": [],