Unverified Commit 55530d90 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Add -runFirstLaunch hint text (#44870)

parent 5376e90f
...@@ -139,7 +139,8 @@ class UserMessages { ...@@ -139,7 +139,8 @@ class UserMessages {
String get xcodeEula => 'Xcode end user license agreement not signed; open Xcode or run the command \'sudo xcodebuild -license\'.'; String get xcodeEula => 'Xcode end user license agreement not signed; open Xcode or run the command \'sudo xcodebuild -license\'.';
String get xcodeMissingSimct => String get xcodeMissingSimct =>
'Xcode requires additional components to be installed in order to run.\n' 'Xcode requires additional components to be installed in order to run.\n'
'Launch Xcode and install additional required components when prompted.'; 'Launch Xcode and install additional required components when prompted or run:\n'
' sudo xcodebuild -runFirstLaunch';
String get xcodeMissing => String get xcodeMissing =>
'Xcode not installed; this is necessary for iOS development.\n' 'Xcode not installed; this is necessary for iOS development.\n'
'Download at https://developer.apple.com/xcode/download/.'; 'Download at https://developer.apple.com/xcode/download/.';
...@@ -148,7 +149,8 @@ class UserMessages { ...@@ -148,7 +149,8 @@ class UserMessages {
'Download at: https://developer.apple.com/xcode/download/\n' 'Download at: https://developer.apple.com/xcode/download/\n'
'Or install Xcode via the App Store.\n' 'Or install Xcode via the App Store.\n'
'Once installed, run:\n' 'Once installed, run:\n'
' sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer'; ' sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer\n'
' sudo xcodebuild -runFirstLaunch';
// Messages used in CocoaPodsValidator // Messages used in CocoaPodsValidator
String cocoaPodsVersion(String version) => 'CocoaPods version $version'; String cocoaPodsVersion(String version) => 'CocoaPods version $version';
......
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