From ee315a1904e7e318693f2c8db7f90de2f59c0515 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Mon, 20 May 2019 13:31:44 +0200 Subject: [PATCH] install_latest_artifact script: Allow gitjournal to not be installed --- scripts/install_latest_artifact.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_latest_artifact.sh b/scripts/install_latest_artifact.sh index b32ce347..6c66afe7 100755 --- a/scripts/install_latest_artifact.sh +++ b/scripts/install_latest_artifact.sh @@ -11,5 +11,5 @@ APK_LOCATION="/tmp/gitjournal.apk" echo "Downloading $URL" curl "$URL" -o "$APK_LOCATION" -adb uninstall io.gitjournal.gitjournal +adb uninstall io.gitjournal.gitjournal || true adb install -r "$APK_LOCATION"