From 0e64942a6fb3f1a7df66951c0d38994a9236e398 Mon Sep 17 00:00:00 2001 From: Bobby Wibowo Date: Sun, 21 Jul 2019 05:29:22 +0700 Subject: [PATCH] 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 016312f..94fd308 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "pm2": "pm2 start --name safe ./lolisafe.js", "thumbs": "node ./scripts/thumbs.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": { "bcrypt": "^3.0.6",