aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgello_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gello_build.sh b/gello_build.sh
index edbffe1..0d0e1bf 100755
--- a/gello_build.sh
+++ b/gello_build.sh
@@ -216,7 +216,7 @@ if [ "$?" == 0 ]; then
echo "$(tput setaf 2)Done! Gello: $READY_APK$(tput sgr reset)"
if [ "$PUSH" == true ]; then
- if [ ! -x $(which adb) ]; then
+ if [ -x $(which adb) ]; then
adb wait-for-device
adb install -r -d $TOP_GELLO/Gello.apk
exit $?