Merge pull request #1018 from FrenchBen/add-port-8888

Added 8888 as webport and fixed indents
This commit is contained in:
Jeffrey Morgan 2015-09-08 10:44:30 -07:00
commit e01c96903a
2 changed files with 10 additions and 12 deletions

View File

@ -130,11 +130,9 @@ module.exports = {
} }
if (v1parts[i] === v2parts[i]) { if (v1parts[i] === v2parts[i]) {
continue; continue;
} } else if (v1parts[i] > v2parts[i]) {
else if (v1parts[i] > v2parts[i]) {
return 1; return 1;
} } else {
else {
return -1; return -1;
} }
} }
@ -158,5 +156,5 @@ module.exports = {
linuxToWindowsPath: function (linuxAbsPath) { linuxToWindowsPath: function (linuxAbsPath) {
return linuxAbsPath.replace('/c', 'C:').split('/').join('\\'); return linuxAbsPath.replace('/c', 'C:').split('/').join('\\');
}, },
webPorts: ['80', '8000', '8080', '3000', '5000', '2368', '9200', '8983'] webPorts: ['80', '8000', '8080', '8888', '3000', '5000', '2368', '9200', '8983']
}; };