Skip to content

Commit

Permalink
Add newline to help text for check_prerequisites
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron committed May 22, 2018
1 parent 1ec43d8 commit 714f4aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simctl.js
Expand Up @@ -47,9 +47,9 @@ exports = module.exports = {
if (obj.code !== 0) {
obj.output = 'simctl was not found.\n';
obj.output += 'Check that you have Xcode 8.x installed:\n';
obj.output += '\txcodebuild --version';
obj.output += '\txcodebuild --version\n';
obj.output += 'Check that you have Xcode 8.x selected:\n';
obj.output += '\txcode-select --print-path';
obj.output += '\txcode-select --print-path\n';
}

return obj;
Expand Down

0 comments on commit 714f4aa

Please sign in to comment.