Change script paths to langs directory

This commit is contained in:
Ross Savage
2024-05-21 15:38:13 +02:00
parent c6c5755973
commit 337b52d40e
19 changed files with 136 additions and 136 deletions

View File

@@ -48,7 +48,7 @@ Future<void> mainImpl(List<String> args) async {
await run('rustup target add $triple');
await run('${target.compiler} --target $triple $profileArg', args: compilerOpts);
await run('mkdir -p $flutterIdentifier');
await run('cp ../../../target/$triple/$profile/${target.libName} $flutterIdentifier/');
await run('cp ../../../../target/$triple/$profile/${target.libName} $flutterIdentifier/');
}
final hasLinux = targets.any((target) => !target.isWindows);