File tree 1 file changed +3
-3
lines changed
packages/flutter_tools/lib/src/ios 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ import '../globals.dart';
20
20
import '../protocol_discovery.dart' ;
21
21
import 'mac.dart' ;
22
22
23
- const String _ideviceinstallerInstructions =
23
+ const String _kIdeviceinstallerInstructions =
24
24
'To work with iOS devices, please install ideviceinstaller.\n '
25
- 'If you use homebrew, you can install it with " \$ brew install ideviceinstaller" .' ;
25
+ 'To install, run \' brew install ideviceinstaller\' .' ;
26
26
27
27
const Duration kPortForwardTimeout = const Duration (seconds: 10 );
28
28
@@ -124,7 +124,7 @@ class IOSDevice extends Device {
124
124
125
125
static String _checkForCommand (
126
126
String command, [
127
- String macInstructions = _ideviceinstallerInstructions
127
+ String macInstructions = _kIdeviceinstallerInstructions
128
128
]) {
129
129
try {
130
130
command = runCheckedSync (< String > ['which' , command]).trim ();
You can’t perform that action at this time.
0 commit comments