From 2dfbb7224f2022e4a8c713ac8a7d6a073e42732e Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 2 Nov 2022 12:42:32 +1300 Subject: [PATCH] Remove parallel logic to deploy.sh Didn't work anyway. Don't mind waiting a bit for deploys. --- deploy.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/deploy.sh b/deploy.sh index d4cf635..9766a29 100755 --- a/deploy.sh +++ b/deploy.sh @@ -2,13 +2,8 @@ set -ex -yarn tsc & -tsc=$! -yarn lint & -lint=$! -yarn test & -units=$1 -wait $tsc $lint $units +yarn tsc +yarn lint git push origin HEAD & cd android || exit 1