Commit 9e089f23 authored by Chinmay Garde's avatar Chinmay Garde

Avoid launching Xcode after "flutter ios --init"

parent dc7451d6
...@@ -134,9 +134,9 @@ class IOSCommand extends FlutterCommand { ...@@ -134,9 +134,9 @@ class IOSCommand extends FlutterCommand {
} }
// Step 4: Launch Xcode and let the user edit plist, resources, provisioning, etc. // Step 4: Launch Xcode and let the user edit plist, resources, provisioning, etc.
print("Launching project in Xcode..."); print("An Xcode project has been placed in 'ios/'.");
ProcessResult launch = await Process.run("/usr/bin/open", ["ios/FlutterApplication.xcodeproj"]); print("You may edit it to modify iOS specific configuration.");
return launch.exitCode; return 0;
} }
@override @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