Commit b8b6a14d authored by xster's avatar xster Committed by GitHub

Make a few error messages bold (#9774)

parent 4ca447b6
......@@ -287,7 +287,9 @@ Please ensure that a Development Team is selected by:
For more information, please visit:
https://flutter.io/setup/#deploy-to-ios-devices\n
Or run on an iOS simulator
═══════════════════════════════════════════════════════════════════════════════════''');
═══════════════════════════════════════════════════════════════════════════════════''',
emphasis: true,
);
}
}
}
......@@ -371,7 +373,8 @@ Future<Null> _runPodInstall(Directory bundle, String engineDirectory) async {
'Warning: CocoaPods version $minimumVersion or greater not installed. Skipping pod install.\n'
'$noCocoaPodsConsequence\n'
'To install:\n'
'$cocoaPodsInstallInstructions\n'
'$cocoaPodsInstallInstructions\n',
emphasis: true,
);
return;
}
......@@ -381,7 +384,8 @@ Future<Null> _runPodInstall(Directory bundle, String engineDirectory) async {
'$noCocoaPodsConsequence\n'
'To initialize CocoaPods, run:\n'
' pod setup\n'
'once to finalize CocoaPods\' installation.'
'once to finalize CocoaPods\' installation.',
emphasis: true,
);
return;
}
......
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