Skip to content

Commit

Permalink
Fix the "Get Flutter packages" script (#2828)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbis04 authored Nov 22, 2024
1 parent bf37e78 commit da551dd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions content/yaml-quick-start/building-a-flutter-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ In this step you can also define the build artifacts you are interested in. Thes
echo "flutter.sdk=$HOME/programs/flutter" > "$CM_BUILD_DIR/android/local.properties"
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Build AAB with Flutter
script: |
flutter build appbundle --release
Expand Down Expand Up @@ -188,7 +188,7 @@ Please make sure to wrap the `--bundle` pattern in single quotes. If the `--bund
xcode-project use-profiles
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
Expand Down Expand Up @@ -221,7 +221,7 @@ Please make sure to wrap the `--bundle` pattern in single quotes. If the `--bund

- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
Expand All @@ -246,7 +246,7 @@ Please make sure to wrap the `--bundle` pattern in single quotes. If the `--bund
scripts:
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Build Flutter Windows
script: |
flutter config --enable-windows-desktop
Expand Down Expand Up @@ -458,7 +458,7 @@ workflows:
echo "flutter.sdk=$HOME/programs/flutter" > "$CM_BUILD_DIR/android/local.properties"
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Flutter analyze
script: |
flutter analyze
Expand Down Expand Up @@ -512,7 +512,7 @@ workflows:
xcode-project use-profiles
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
Expand Down Expand Up @@ -593,7 +593,7 @@ workflows:
xcode-project use-profiles
- name: Get Flutter packages
script: |
flutter packages pub get
flutter pub get
- name: Install pods
script: |
find . -name "Podfile" -execdir pod install \;
Expand Down Expand Up @@ -678,7 +678,7 @@ workflows:
- ~/.pub-cache
scripts:
- name: Get Flutter packages
script: flutter packages pub get
script: flutter pub get
- name: Configure for Windows
script: flutter config --enable-windows-desktop
- name: Build Windows
Expand Down Expand Up @@ -709,7 +709,7 @@ workflows:
- ~/.pub-cache
scripts:
- name: Get Flutter packages
script: flutter packages pub get
script: flutter pub get
- name: Configure for Windows
script: flutter config --enable-windows-desktop
- name: Build Windows
Expand Down

0 comments on commit da551dd

Please sign in to comment.