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