Fixed init

This commit is contained in:
thomashii 2022-01-13 22:51:04 +08:00
parent f4b38337e0
commit b9079bbe5f

View file

@ -129,7 +129,7 @@ class InitCommand extends Command {
}
Future _cloneRepo(Directory projectDir) async {
late Directory boilerplateDir;
Directory boilerplateDir = Directory("./empty");
try {
if (await projectDir.exists()) {
@ -255,14 +255,14 @@ class InitCommand extends Command {
}
Future _pubGet(Directory projectDir) async {
var pubPath = "dart pub";
//print(darkGray.wrap('Running "$pubPath"...'));
print(darkGray.wrap('\$ $pubPath get'));
var pub = await Process.start(pubPath, ['get'],
var dartPath = "dart";
print(darkGray.wrap('Running "$dartPath"...'));
print(darkGray.wrap('\$ $dartPath pub get'));
var dart = await Process.start(dartPath, ['pub', 'get'],
workingDirectory: projectDir.absolute.path,
mode: ProcessStartMode.inheritStdio);
var code = await pub.exitCode;
print('Pub process exited with code $code');
var code = await dart.exitCode;
print('Dart process exited with code $code');
}
}