From 713183df76bc45c71496cceaa60adfa31696b26d Mon Sep 17 00:00:00 2001 From: Michael Spiss Date: Thu, 8 Sep 2022 21:29:04 +0200 Subject: [PATCH] Fix ProcessException: "File not found" in configurator --- util/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/lib/main.dart b/util/lib/main.dart index 205c0ca..88b77aa 100644 --- a/util/lib/main.dart +++ b/util/lib/main.dart @@ -218,7 +218,7 @@ void adjustPubspecFontIncludes(Set 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));