From 8a57ba07725c23b2fb574f9f6b1dc4e0e525bd0a Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Tue, 7 May 2024 14:59:57 -0500 Subject: [PATCH] chore(e2e): include space in path for patch e2e (#2025) Co-authored-by: Eric Seidel --- scripts/patch_e2e.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/patch_e2e.sh b/scripts/patch_e2e.sh index 1214bc85..266866c1 100755 --- a/scripts/patch_e2e.sh +++ b/scripts/patch_e2e.sh @@ -14,8 +14,9 @@ # # Usage: ./patch_e2e.sh -TEMP_DIR=$(mktemp -d) -cd $TEMP_DIR +# Intentionally including a space in the path. +TEMP_DIR=$(mktemp -d -t 'shorebird workspace-XXXXX') +cd "$TEMP_DIR" # Create a new empty flutter project flutter create e2e_test --empty --platforms android