From 2a868cc9eeab8de2d410b6d9f023d90ad51dc59f Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Wed, 2 Nov 2022 12:42:50 +1300 Subject: [PATCH] Add --nobuild option to install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 294ac93..3ddc739 100755 --- a/install.sh +++ b/install.sh @@ -2,5 +2,5 @@ set -ex cd android -./gradlew assembleRelease +[ "$1" != "--nobuild" ] && ./gradlew assembleRelease adb -d install app/build/outputs/apk/release/app-arm64-v8a-release.apk