Commit 6e2f133e authored by Chinmay Garde's avatar Chinmay Garde

Merge pull request #1386 from chinmaygarde/master

Avoid launching Xcode after "flutter ios --init"
parents dc7451d6 9e089f23
......@@ -134,9 +134,9 @@ class IOSCommand extends FlutterCommand {
}
// Step 4: Launch Xcode and let the user edit plist, resources, provisioning, etc.
print("Launching project in Xcode...");
ProcessResult launch = await Process.run("/usr/bin/open", ["ios/FlutterApplication.xcodeproj"]);
return launch.exitCode;
print("An Xcode project has been placed in 'ios/'.");
print("You may edit it to modify iOS specific configuration.");
return 0;
}
@override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment