diff --git a/test/test/install_test.dart b/test/test/install_test.dart index 63e124c..2468fbf 100644 --- a/test/test/install_test.dart +++ b/test/test/install_test.dart @@ -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); }