From 8aeb0f7e44d68507e25ed1946adddcd3cdd31e3b Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Mon, 29 Sep 2014 12:19:23 -0700 Subject: [PATCH] Tweak 'meteor build' with no --mobile-server error message. --- tools/commands.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/commands.js b/tools/commands.js index 9c0e282d8b..f045e9b6af 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -648,9 +648,9 @@ var buildCommand = function (options) { } else { // For Cordova builds, require '--mobile-server'. // XXX better error message? - process.stdout.write( -"Supply the server hostname and port argument in the --mobile-server option\n" + -"for the mobile app builds.\n"); + process.stderr.write( +"Supply the server hostname and port in the --mobile-server option\n" + +"for mobile app builds.\n"); return 1; } var cordovaSettings = {};