1 parent 85578ac commit 5a29ed8Copy full SHA for 5a29ed8
1 file changed
.maestro/scripts/run-tests.sh
@@ -65,7 +65,9 @@ case "$PLATFORM" in
65
*) echo "Error: --platform must be ios or android" >&2; exit 1 ;;
66
esac
67
68
-DEVICE_ID=$("$SETUP" | tee /dev/tty | grep "^DEVICE_ID=" | cut -d= -f2)
+SETUP_OUTPUT=$("$SETUP")
69
+echo "$SETUP_OUTPUT"
70
+DEVICE_ID=$(echo "$SETUP_OUTPUT" | grep "^DEVICE_ID=" | cut -d= -f2)
71
72
# Android uses DeviceLab; iOS keeps the runner default driver.
73
DRIVER_ARGS=""
0 commit comments