mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix bad refactoring of getHost()
This commit is contained in:
@@ -121,7 +121,7 @@ exports.printPackageList = function (items, options) {
|
||||
// any particular technical significance (eg, might resolve in DNS).
|
||||
exports.getHost = function (...args) {
|
||||
var ret;
|
||||
var attempt = function () {
|
||||
var attempt = function (...args) {
|
||||
var output = exports.execFileSync(args[0], args.slice(1)).stdout;
|
||||
if (output) {
|
||||
ret = output.trim();
|
||||
|
||||
Reference in New Issue
Block a user