Tweak 'meteor build' with no --mobile-server error message.

This commit is contained in:
Emily Stark
2014-09-29 12:19:23 -07:00
parent 1aa1b268b5
commit 8aeb0f7e44

View File

@@ -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 = {};