Skip to content

Commit 27193e0

Browse files
committed
Updated error text from check_prerequisites to reflect Xcode 8
1 parent 125abc5 commit 27193e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simctl",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "library for Xcode 8+ simctl utility on macOS",
55
"repository": {
66
"type": "git",

simctl.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ exports = module.exports = {
4646

4747
if (obj.code !== 0) {
4848
obj.output = 'simctl was not found.\n';
49-
obj.output += 'Check that you have Xcode 7.x installed:\n';
49+
obj.output += 'Check that you have Xcode 8.x installed:\n';
5050
obj.output += '\txcodebuild --version';
51-
obj.output += 'Check that you have Xcode 7.x selected:\n';
51+
obj.output += 'Check that you have Xcode 8.x selected:\n';
5252
obj.output += '\txcode-select --print-path';
5353
}
5454

0 commit comments

Comments
 (0)