don't break running from checkout

This commit is contained in:
David Glasser
2014-08-06 16:05:34 -07:00
parent 67de025b6f
commit 92cf32a49a

View File

@@ -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);