diff --git a/tools/main.js b/tools/main.js index 33b0f7d888..11e66ba8c9 100644 --- a/tools/main.js +++ b/tools/main.js @@ -781,7 +781,8 @@ Fiber(function () { // release.load (which will refresh the catalog because the release // presumably doesn't exist on the new server, and this is a slow // operation). - if (warehouse.releaseExistsInWarehouse(releaseName)) { + if (releaseName !== null && + warehouse.releaseExistsInWarehouse(releaseName)) { var manifest = warehouse.ensureReleaseExistsAndReturnManifest( releaseName); oldSpringboard(manifest.tools);