From 74b613d15555e3743eecde9dc98ee24360359b20 Mon Sep 17 00:00:00 2001 From: Justin Tracey Date: Thu, 19 Dec 2024 21:01:56 -0500 Subject: [PATCH] Android CICD: use posix style test --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 319f7b11c..a7dcbdbbd 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -178,7 +178,7 @@ jobs: util/android-commands.sh sync_host util/android-commands.sh build util/android-commands.sh tests - if [[ "${{ steps.rust-cache.outputs.cache-hit }}" != 'true' ]]; then util/android-commands.sh sync_image; fi; exit 0 + if [ "${{ steps.rust-cache.outputs.cache-hit }}" != 'true' ]; then util/android-commands.sh sync_image; fi; exit 0 - name: Collect information about runner ressources if: always() continue-on-error: true