Skip to content

Commit d443df0

Browse files
authored
Fix bash entrypoint tests (#160705)
Fixes the bash integration test missing a file.
1 parent 7df127b commit d443df0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/flutter_tools/test/integration.shard/bash_entrypoint_test.dart

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,16 @@ echo downloaded dart sdk
9494
''');
9595
makeExecutable(updateDartSdk);
9696

97+
final File udpateEngine = tempDir
98+
.childDirectory('bin')
99+
.childDirectory('internal')
100+
.childFile('update_engine_version.sh')..writeAsStringSync('''
101+
#!/usr/bin/env bash
102+
103+
echo engine version
104+
''');
105+
makeExecutable(udpateEngine);
106+
97107
// create a fake dart runtime
98108
final File dartBin = (tempDir
99109
.childDirectory('bin')

0 commit comments

Comments
 (0)