mirror of
https://github.com/ARMSX2/ARMSX2.git
synced 2026-08-24 16:50:16 -07:00
It fired on its very first run against an APK that DID contain the library. `unzip -l | grep -q` under `set -o pipefail` is a false-failure generator: grep exits on the first match, SIGPIPEs unzip, and pipefail then reports the pipeline as failed. Capture the listing and match it with `case` instead, which is what the existing notes on this already say to do.