From 41f85204e9a48778761e66d021b443901638da69 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Sat, 3 Aug 2024 19:27:30 +0100 Subject: [PATCH] install_apps: dont exit 1 when install fails --- e2e/install_apps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/install_apps b/e2e/install_apps index a59854844b..27a790de7f 100755 --- a/e2e/install_apps +++ b/e2e/install_apps @@ -12,9 +12,9 @@ for file in ./apps/*; do extension="${file##*.}" if [ "$extension" = "apk" ]; then - adb install -r "$file" >/dev/null + adb install -r "$file" >/dev/null || echo "adb: could not install $filename" elif [ "$extension" = "app" ] && [ "$(uname)" = "Darwin" ]; then - xcrun simctl install booted "$file" + xcrun simctl install booted "$file" || echo "xcrun: could not install $filename" else echo "unknown file extension $extension" fi