From c087a77501d802bb9e83d0d05c27fc15bc372998 Mon Sep 17 00:00:00 2001
From: Sean Li <lishang106@gmail.com>
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);
   }
 };