mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix error messages when running meteor run
This commit is contained in:
committed by
David Glasser
parent
1de7926e1d
commit
6e25474b31
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user