From 3b8bbb32bb238aa80e2c8a6a15f710175ea0d71a Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Mon, 6 Apr 2015 13:08:15 -0700 Subject: [PATCH] Fix cluster up failures by cleaning docker build dirs (sigh) --- build/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/common.sh b/build/common.sh index 670e496a436..b5f492d1648 100644 --- a/build/common.sh +++ b/build/common.sh @@ -620,7 +620,8 @@ function kube::release::create_docker_images_for_server() { docker build -q -t "${docker_image_tag}" ${docker_build_path} >/dev/null docker save ${docker_image_tag} > ${1}/${binary_name}.tar echo $md5_sum > ${1}/${binary_name}.docker_tag - rm ${docker_file_path} + + rm -rf ${docker_build_path} ) & done