We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e426eb commit 8558ccdCopy full SHA for 8558ccd
bin/package_command.dart
@@ -205,10 +205,7 @@ class PackageCommand extends Command {
205
206
Future<int> runExec(String execPath, List<String> args,
207
{Map<String, String>? environment}) async {
208
- final proc = await Process.start(execPath, args,
209
- environment: environment,
210
- runInShell: true,
211
- includeParentEnvironment: false);
+ final proc = await Process.start(execPath, args, environment: environment);
212
213
await for (final line in proc.stdout.transform(utf8.decoder)) {
214
stdout.write(line);
0 commit comments