From 9204280686af3c5bf539a93bbe900acc9253060d Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Mon, 10 Jul 2023 10:44:34 -0400 Subject: [PATCH] fix(shorebird_cli): `shorebird patch android` remove `runInShell` (#796) --- packages/shorebird_cli/lib/src/shorebird_build_mixin.dart | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/shorebird_cli/lib/src/shorebird_build_mixin.dart b/packages/shorebird_cli/lib/src/shorebird_build_mixin.dart index 8d4bca103..5543f1518 100644 --- a/packages/shorebird_cli/lib/src/shorebird_build_mixin.dart +++ b/packages/shorebird_cli/lib/src/shorebird_build_mixin.dart @@ -279,11 +279,7 @@ mixin ShorebirdBuildMixin on ShorebirdCommand { diffPath, ]; - final result = await process.run( - diffExecutable, - diffArguments, - runInShell: true, - ); + final result = await process.run(diffExecutable, diffArguments); if (result.exitCode != 0) { throw Exception('Failed to create diff: ${result.stderr}');