Skip to content

Commit

Permalink
fix: Fixed a bug that build failed if there was nothing in the assets…
Browse files Browse the repository at this point in the history
… folder.
  • Loading branch information
mathrunet committed Feb 28, 2023
1 parent f25b677 commit 970ab2c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/katana_cli/lib/action/git/platform/android.dart
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,11 @@ jobs:
# パッケージのダウンロード。
- name: Download flutter packages
run: flutter pub get
# Creation of the Assets folder.
# Assetsフォルダの作成。
- name: Create assets folder
run: mkdir -p assets
# Running flutter analyze.
# Flutter analyzeの実行。
Expand Down
5 changes: 5 additions & 0 deletions packages/katana_cli/lib/action/git/platform/ios.dart
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,11 @@ jobs:
- name: Download flutter packages
run: flutter pub get
# Creation of the Assets folder.
# Assetsフォルダの作成。
- name: Create assets folder
run: mkdir -p assets
# Running flutter analyze.
# Flutter analyzeの実行。
- name: Analyzing flutter project
Expand Down
5 changes: 5 additions & 0 deletions packages/katana_cli/lib/action/git/platform/web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@ jobs:
- name: Download flutter packages
run: flutter pub get
# Creation of the Assets folder.
# Assetsフォルダの作成。
- name: Create assets folder
run: mkdir -p assets
# Running flutter analyze.
# Flutter analyzeの実行。
- name: Analyzing flutter project
Expand Down

0 comments on commit 970ab2c

Please sign in to comment.