We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125abc5 commit 27193e0Copy full SHA for 27193e0
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "simctl",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "library for Xcode 8+ simctl utility on macOS",
5
"repository": {
6
"type": "git",
simctl.js
@@ -46,9 +46,9 @@ exports = module.exports = {
46
47
if (obj.code !== 0) {
48
obj.output = 'simctl was not found.\n';
49
- obj.output += 'Check that you have Xcode 7.x installed:\n';
+ obj.output += 'Check that you have Xcode 8.x installed:\n';
50
obj.output += '\txcodebuild --version';
51
- obj.output += 'Check that you have Xcode 7.x selected:\n';
+ obj.output += 'Check that you have Xcode 8.x selected:\n';
52
obj.output += '\txcode-select --print-path';
53
}
54
0 commit comments