Skip to content

Commit

Permalink
ignore uninstall if empty
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniosb committed Jan 24, 2024
1 parent 0b19546 commit 79102cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 79102cd

Please sign in to comment.