From 9524feeca255524e1b63a3d4e0e08d6abc853b17 Mon Sep 17 00:00:00 2001 From: Justine De Caires Date: Thu, 12 Jan 2023 10:48:13 -0800 Subject: [PATCH] deploy.sh: Don't fail deploy on empty stash --- scripts/deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index a365a4fa9..41e3f468e 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -36,4 +36,6 @@ popd git checkout - -git stash apply +if git stash show; then + git stash apply +fi