mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Merge pull request #309 from abarth/improve_init
Improve init.dart not to assume `dart` is in your PATH
This commit is contained in:
commit
4c7a557d56
@ -5,13 +5,12 @@
|
||||
/*
|
||||
* This script should be invoked via 'pub run' after 'pub get':
|
||||
* $ pub run sky:init
|
||||
* NOTE: The 'dart' executable must be on your $PATH for this script to work.
|
||||
*/
|
||||
|
||||
import 'dart:io';
|
||||
|
||||
main(List<String> arguments) {
|
||||
ProcessResult result = Process.runSync('dart', ['-p', 'packages', 'packages/mojom/generate.dart']);
|
||||
ProcessResult result = Process.runSync(Platform.executable, ['-p', 'packages', 'packages/mojom/generate.dart']);
|
||||
stdout.write(result.stdout);
|
||||
stderr.write(result.stderr);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user