Skip to content

Commit

Permalink
set -x in install script for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Mar 5, 2024
1 parent c18c204 commit 67e59d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/test/install_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,12 @@ fi''',
'file://${repoRoot.childFile('flutterw').path}',
);

// add set -x for debugging
modified = modified.replaceFirst(
'#!/usr/bin/env sh',
'#!/usr/bin/env sh\nset -x',
);

testableInstall.writeAsStringSync(modified);
}

Expand Down

0 comments on commit 67e59d5

Please sign in to comment.