Updated package.json

Added an "echo" at the end of yarn pull script to avoid yarn recognizing
error from "git stash pop" if there were no local changes stashed.
This commit is contained in:
Bobby Wibowo 2019-07-21 05:29:22 +07:00
parent 6adf982fb6
commit 0e64942a6f
No known key found for this signature in database
GPG Key ID: 51C3A1E1E22D26CF

View File

@ -20,7 +20,7 @@
"pm2": "pm2 start --name safe ./lolisafe.js", "pm2": "pm2 start --name safe ./lolisafe.js",
"thumbs": "node ./scripts/thumbs.js", "thumbs": "node ./scripts/thumbs.js",
"cfpurge": "node ./scripts/cfpurge.js", "cfpurge": "node ./scripts/cfpurge.js",
"pull": "git stash; git pull; yarn install --production; git stash pop" "pull": "git stash; git pull; yarn install --production; git stash pop; echo OK."
}, },
"dependencies": { "dependencies": {
"bcrypt": "^3.0.6", "bcrypt": "^3.0.6",