Remove parallel logic to deploy.sh

Didn't work anyway. Don't mind waiting a bit for deploys.
This commit is contained in:
Brandon Presley 2022-11-02 12:42:32 +13:00
parent ffc0662171
commit 2dfbb7224f
1 changed files with 2 additions and 7 deletions

View File

@ -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