File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 97
97
- checkout
98
98
- run : flutter pub get
99
99
- run : sh ./scripts/pigeon.sh
100
- - run : flutter pub run build_runner build --delete-conflicting-outputs
100
+ - run : dart run build_runner build --delete-conflicting-outputs
101
101
- run : flutter test --coverage
102
102
- run :
103
103
working_directory : coverage
@@ -194,7 +194,7 @@ jobs:
194
194
- checkout
195
195
- run : flutter pub get
196
196
- run : sh ./scripts/pigeon.sh
197
- - run : flutter pub run build_runner build --delete-conflicting-outputs
197
+ - run : dart run build_runner build --delete-conflicting-outputs
198
198
- run :
199
199
name : Perform Static Analysis
200
200
command : flutter analyze
@@ -206,10 +206,10 @@ jobs:
206
206
- checkout
207
207
- run : flutter pub get
208
208
- run : sh ./scripts/pigeon.sh
209
- - run : flutter pub run build_runner build --delete-conflicting-outputs
209
+ - run : dart run build_runner build --delete-conflicting-outputs
210
210
- run :
211
211
name : Check Package Score
212
- command : flutter pub run pana --no-warning --exit-code-threshold 0
212
+ command : dart run pana --no-warning --exit-code-threshold 0
213
213
- run : flutter pub publish --dry-run
214
214
215
215
release :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ generate_pigeon() {
14
14
name_snake=$( basename $name_file .api.dart)
15
15
name_pascal=$( echo " $name_snake " | perl -pe ' s/(^|_)./uc($&)/ge;s/_//g' )
16
16
17
- flutter pub run pigeon \
17
+ dart run pigeon \
18
18
--input " pigeons/$name_snake .api.dart" \
19
19
--dart_out " $DIR_DART /$name_snake .api.g.dart" \
20
20
--objc_header_out " $DIR_IOS /${name_pascal} Pigeon.h" \
You can’t perform that action at this time.
0 commit comments