Skip to content

Commit 8558ccd

Browse files
committed
Fix _Py_HashRandomization_Init on Windows
1 parent 4e426eb commit 8558ccd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

bin/package_command.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,7 @@ class PackageCommand extends Command {
205205

206206
Future<int> runExec(String execPath, List<String> args,
207207
{Map<String, String>? environment}) async {
208-
final proc = await Process.start(execPath, args,
209-
environment: environment,
210-
runInShell: true,
211-
includeParentEnvironment: false);
208+
final proc = await Process.start(execPath, args, environment: environment);
212209

213210
await for (final line in proc.stdout.transform(utf8.decoder)) {
214211
stdout.write(line);

0 commit comments

Comments
 (0)