From cde2f33dfcd9728240d37c80383534a5b6af5caf Mon Sep 17 00:00:00 2001
From: =?utf8?q?Petr=20Ospal=C3=BD?= 
Date: Tue, 15 Jan 2019 15:26:28 +0100
Subject: [PATCH] Fix bash-installer when .kube already exists
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit
Change-Id: I4944ffffce0890561291b2efa96b1df614f93332
Signed-off-by: Petr Ospalý 
Issue-ID: OOM-1581
---
 bash/tools/common-functions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bash/tools/common-functions.sh b/bash/tools/common-functions.sh
index 4ccb2069..6ffb42a7 100755
--- a/bash/tools/common-functions.sh
+++ b/bash/tools/common-functions.sh
@@ -254,7 +254,7 @@ install_files() {
         cp "$APROJECT_DIR/resources/downloads/${binary}" /usr/local/bin/
         chmod 755 "/usr/local/bin/${binary}"
     done
-    mkdir ~/.kube
+    mkdir -p ~/.kube
 }
 
 setup_vnc_server() {
-- 
2.16.6