From 7dba631ba0c77d6ae9b28f713c7c43154929d80b Mon Sep 17 00:00:00 2001 From: Luna Wei Date: Wed, 14 Feb 2024 13:17:47 -0800 Subject: [PATCH] fix nightlies dont exit early (#43035) Summary: Changelog: [Internal] - We early-exited because of poor copy-pasta and the fact that our tests don't properly emulate the behavior of mock `exit` Will try and clean this up in next diff but want to quickly fix so it unbreaks nightlies Reviewed By: yungsters Differential Revision: D53779109 --- scripts/releases-ci/publish-npm.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/releases-ci/publish-npm.js b/scripts/releases-ci/publish-npm.js index 6ce3231a7cd6b0..53511a2b9c05ca 100755 --- a/scripts/releases-ci/publish-npm.js +++ b/scripts/releases-ci/publish-npm.js @@ -89,7 +89,6 @@ async function publishMonorepoPackages(tag /*: ?string */) { exit(1); } else { echo(`Published ${spec} to npm`); - exit(0); } } }