Skip to content

Commit

Permalink
fix(e2e): remove --force flag from patch e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanoltman committed Apr 4, 2024
1 parent 09c97d4 commit a61708c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/patch_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a61708c

Please sign in to comment.