From 24fcc3f554bf32d8204128a88ff63d7a8c4b2877 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 26 Jan 2018 17:11:10 -0800 Subject: [PATCH] Fix dependency for 'publish-nightly'. --- Jakefile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile.js b/Jakefile.js index 9bef7946722..87fca36a841 100644 --- a/Jakefile.js +++ b/Jakefile.js @@ -594,7 +594,7 @@ task("configure-insiders", [configurePrereleaseJs], function () { }, { async: true }); desc("Configure, build, test, and publish the insiders release."); -task("publish-insiders", ["configure-nightly", "LKG", "clean", "setDebugMode", "runtests-parallel"], function () { +task("publish-insiders", ["configure-insiders", "LKG", "clean", "setDebugMode", "runtests-parallel"], function () { var cmd = "npm publish --tag insiders"; console.log(cmd); exec(cmd);