We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7df127b commit d443df0Copy full SHA for d443df0
packages/flutter_tools/test/integration.shard/bash_entrypoint_test.dart
@@ -94,6 +94,16 @@ echo downloaded dart sdk
94
''');
95
makeExecutable(updateDartSdk);
96
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
107
// create a fake dart runtime
108
final File dartBin = (tempDir
109
.childDirectory('bin')
0 commit comments