Skip to content

Commit

Permalink
fix(shorebird_cli): shorebird patch android remove runInShell (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Jul 10, 2023
1 parent 44a4173 commit 9204280
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/shorebird_cli/lib/src/shorebird_build_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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}');
Expand Down

0 comments on commit 9204280

Please sign in to comment.