From a61708c75680b74d7b49a590c3079abd07b7776f Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Thu, 4 Apr 2024 11:15:59 -0400 Subject: [PATCH] fix(e2e): remove --force flag from patch e2e test --- scripts/patch_e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/patch_e2e.sh b/scripts/patch_e2e.sh index 339c65dbc..687e4d031 100755 --- a/scripts/patch_e2e.sh +++ b/scripts/patch_e2e.sh @@ -34,7 +34,7 @@ echo "base_url: https://api-dev.shorebird.dev" >> shorebird.yaml APP_ID=$(cat shorebird.yaml | grep 'app_id:' | awk '{print $2}') # Create a new release on Android -shorebird release android --force -v +shorebird release android -v # Run the app on Android and ensure that the print statement is printed. while IFS= read -r line; do @@ -49,7 +49,7 @@ done < <(shorebird preview --release-version 0.1.0+1 --app-id $APP_ID --platform sed -i '' 's/hello world/hello shorebird/g' lib/main.dart # Create a patch -shorebird patch android --force -v +shorebird patch android -v # Run the app on Android and ensure that the original print statement is printed. while IFS= read -r line; do