Skip to content

Commit

Permalink
Fix ProcessException: "File not found" in configurator
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelspiss committed Sep 8, 2022
1 parent 8156614 commit 713183d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void adjustPubspecFontIncludes(Set<String> styles) {
: print(blue(enabledStyles.join(', ')));

print(blue('\nRunning "flutter pub get"'));
final result = Process.runSync('flutter', ['pub', 'get']);
final result = Process.runSync('flutter', ['pub', 'get'], runInShell: true);
stdout.write(result.stdout);
stderr.write(red(result.stderr));

Expand Down

0 comments on commit 713183d

Please sign in to comment.