Skip to content

Commit

Permalink
Merge pull request #279 from ewanharris/TIMOB-24892
Browse files Browse the repository at this point in the history
Fix inconsistencies and invalid URL on ti setup check
  • Loading branch information
cb1kenobi committed Jul 26, 2018
2 parents 1dc849a + 65ef63e commit d9f8f48
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/commands/lib/urls_to_check.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"https://api.cloud.appcelerator.com",
"https://dashboard.appcelerator.com",
"http://developer.appcelerator.com",
"https://preview.appcelerator.com",
"http://preview.appcelerator.com",
"https://preview.appcelerator.com/appc-studio",
"http://preview.appcelerator.com/appc-studio",
"https://studio.appcelerator.com",
"http://studio.appcelerator.com",
"https://www.appcelerator.com",
"http://www.appcelerator.com",
"http://google.com",
"https://github.com",
"https://registry.npmjs.org"
]
]
2 changes: 1 addition & 1 deletion lib/commands/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ SetupScreens.prototype.check = function check(callback) {
});
},
cliDeps: function (next) {
var cwd = process.mainModule && process.mainModule.filename,
var cwd = path.resolve(__dirname, '..', '..'),
root = path.resolve('/');

if (!cwd) {
Expand Down

0 comments on commit d9f8f48

Please sign in to comment.