From 1a531aa3634acbc22de48ecb03bbb3115c2b4fb2 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Fri, 8 Aug 2014 00:04:14 -0700 Subject: [PATCH] Fix cross-linking Broken by interface change in 8bcbd6 --- tools/commands.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/commands.js b/tools/commands.js index cd9fce338d..402cb3d018 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -561,7 +561,7 @@ main.registerCommand({ // default? i guess the problem with using DEPLOY_ARCH as default // is then 'meteor bundle' with no args fails if you have any local // packages with binary npm dependencies - arch: bundleArch + serverArch: bundleArch } }); if (bundleResult.errors) { @@ -799,7 +799,7 @@ main.registerCommand({ var buildOptions = { minify: ! options.debug, - arch: buildArch + serverArch: buildArch }; var deployResult; @@ -1086,7 +1086,7 @@ main.registerCommand({ var ret; if (options.deploy) { - buildOptions.arch = DEPLOY_ARCH; + buildOptions.serverArch = DEPLOY_ARCH; ret = deploy.bundleAndDeploy({ appDir: testRunnerAppDir, site: options.deploy,