Skip to content

Commit

Permalink
Use fvm on all the .sh scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfteam committed Nov 13, 2022
1 parent 09f94dc commit 8d64146
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion run_build_android.sh
Expand Up @@ -2,4 +2,4 @@
set -e

echo 'Creating android bundle...'
flutter build appbundle
fvm flutter build appbundle
4 changes: 2 additions & 2 deletions run_build_windows.sh
Expand Up @@ -2,7 +2,7 @@
set -e

echo 'Building windows app...'
flutter build windows
fvm flutter build windows

echo 'Creating windows installer...'
flutter pub run msix:create --build-windows false
fvm flutter pub run msix:create --build-windows false
8 changes: 4 additions & 4 deletions run_clean.sh
Expand Up @@ -2,13 +2,13 @@
set -e

echo 'Cleaning project...'
flutter clean
fvm flutter clean

echo 'Retrieving packages...'
flutter pub get
fvm flutter pub get

echo 'Deleting conflicting outputs...'
flutter pub run build_runner clean
flutter pub run build_runner build --delete-conflicting-outputs
fvm flutter pub run build_runner clean
fvm flutter pub run build_runner build --delete-conflicting-outputs

echo 'Clean completed'
2 changes: 1 addition & 1 deletion run_tests.sh
Expand Up @@ -2,4 +2,4 @@
set -e

echo 'Running tests...'
flutter test
fvm flutter test

0 comments on commit 8d64146

Please sign in to comment.