mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix velocity test command for new parsedUrl (e7037b72)
This commit is contained in:
committed by
Avital Oliver
parent
14c0ec29f8
commit
bcacef436e
@@ -318,8 +318,8 @@ function doRunCommand (options) {
|
||||
//
|
||||
// NOTE: this calls process.exit() when testing is done.
|
||||
if (options['test']){
|
||||
var serverUrl = "http://" + (parsedHostPort.host || "localhost") +
|
||||
":" + parsedHostPort.port;
|
||||
var serverUrl = "http://" + (parsedUrl.host || "localhost") +
|
||||
":" + parsedUrl.port;
|
||||
var velocity = require('./run-velocity.js');
|
||||
velocity.runVelocity(serverUrl);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user