From 820532b7aa6a600051b5b0dea7fe0993ec6d7e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 16 Oct 2013 11:42:02 -0700 Subject: [PATCH] Fix `grunt npm:test` --- grunt/tasks/npm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grunt/tasks/npm.js b/grunt/tasks/npm.js index 9d97bb3d15..72d95e536b 100644 --- a/grunt/tasks/npm.js +++ b/grunt/tasks/npm.js @@ -64,8 +64,8 @@ module.exports = function() { var pkgDir = path.join(nodePath, pkg.name); var doneCount = 2; - // Make sure that bin/jsx-internal is runnable by echoing main.js. - run("bin/jsx-internal", ["main.js"], { + // Make sure that bin/jsx is runnable by echoing main.js. + run("bin/jsx", ["main.js"], { cwd: pkgDir }, function(result) { assert.ok(result.stdout.indexOf("transform") >= 0, result.stdout);