From e48e125499feaff6ddd6a90b1ff93b9ec793070e Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 2 Nov 2022 15:41:48 +1300 Subject: [PATCH] Dont send git push to background in deploy.sh If it fails we don't want to continue the script. --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 9766a29..d7cb00f 100755 --- a/deploy.sh +++ b/deploy.sh @@ -4,7 +4,7 @@ set -ex yarn tsc yarn lint -git push origin HEAD & +git push origin HEAD cd android || exit 1 build=app/build.gradle