From 79102cd450e42aa71ec80981830a0d150c89ad3e Mon Sep 17 00:00:00 2001 From: Antonio Britto Date: Wed, 24 Jan 2024 12:41:47 -0300 Subject: [PATCH] ignore uninstall if empty --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 98094c2..d23dc8e 100644 --- a/action.yml +++ b/action.yml @@ -78,7 +78,7 @@ runs: disable-animations: true api-level: 29 # script: ./gradlew connectedCheck - script: adb shell pm list packages com.betrybe | cut -d ':' -f 2 | tr -d '\r' | xargs -L1 -t adb uninstall && ./gradlew connectedCheck + script: adb shell pm list packages com.betrybe | cut -d ':' -f 2 | tr -d '\r' | xargs -L1 -t -r adb uninstall && ./gradlew connectedCheck - name: Get JUnit results id: get_junit_results