From c76ac562f87072b2b0603535a212ef9adab72893 Mon Sep 17 00:00:00 2001 From: Sean Li Date: Thu, 11 Sep 2014 15:34:25 -0700 Subject: [PATCH] Fixed a bug where creating image without volume hangs. --- meteor/client/lib/util.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meteor/client/lib/util.js b/meteor/client/lib/util.js index a1c876fb9a..35caad21a1 100755 --- a/meteor/client/lib/util.js +++ b/meteor/client/lib/util.js @@ -67,6 +67,8 @@ Util.copyVolumes = function (directory, appName, callback) { console.log('Copied volumes for: ' + appName); callback(null); }); + } else { + callback(null); } };