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 0b0a50e403
commit c087a77501
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);
}
};