fix(e2e): remove --force flag from patch e2e test

This commit is contained in:
Bryan Oltman
2024-04-04 11:15:59 -04:00
parent 09c97d4874
commit a61708c756
+2 -2
View File
@@ -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