Fixed a bug where creating image without volume hangs.

This commit is contained in:
Sean Li 2014-09-11 15:34:25 -07:00
parent c4d103574d
commit c76ac562f8
1 changed files with 2 additions and 0 deletions

View File

@ -67,6 +67,8 @@ Util.copyVolumes = function (directory, appName, callback) {
console.log('Copied volumes for: ' + appName);
callback(null);
});
} else {
callback(null);
}
};