Fix error messages when running meteor run

This commit is contained in:
Avital Oliver
2012-12-20 22:19:20 -08:00
committed by David Glasser
parent 1de7926e1d
commit 6e25474b31
2 changed files with 10 additions and 10 deletions

View File

@@ -554,7 +554,7 @@ Fiber(function () {
if (new_argv.settings)
settings = runner.getSettings(new_argv.settings);
// accept packages iff we're deploying tests
var project_dir = path.resolve(require_project("bundle"));
var project_dir = path.resolve(require_project("deploy"));
deploy.deploy_app(new_argv._[1], project_dir, new_argv.debug,
new_argv.tests, new_argv.password, settings);
}

View File

@@ -42,15 +42,15 @@ $METEOR reset --help | grep "Reset the current" > /dev/null
echo "... not in dir"
$METEOR | grep "You're not in" > /dev/null
$METEOR run | grep "You're not in" > /dev/null
$METEOR add foo | grep "You're not in" > /dev/null
$METEOR remove foo | grep "You're not in" > /dev/null
$METEOR list --using | grep "You're not in" > /dev/null
$METEOR bundle foo.tar.gz | grep "You're not in" > /dev/null
$METEOR mongo | grep "You're not in" > /dev/null
$METEOR deploy automated-test | grep "You're not in" > /dev/null
$METEOR reset | grep "You're not in" > /dev/null
$METEOR | grep "run: You're not in" > /dev/null
$METEOR run | grep "run: You're not in" > /dev/null
$METEOR add foo | grep "add: You're not in" > /dev/null
$METEOR remove foo | grep "remove: You're not in" > /dev/null
$METEOR list --using | grep "list --using: You're not in" > /dev/null
$METEOR bundle foo.tar.gz | grep "bundle: You're not in" > /dev/null
$METEOR mongo | grep "mongo: You're not in" > /dev/null
$METEOR deploy automated-test | grep "deploy: You're not in" > /dev/null
$METEOR reset | grep "reset: You're not in" > /dev/null
echo "... create"