From 281a3cd478e3f54b0a1cf6a9d489019cd6e69df7 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sat, 5 Aug 2017 13:41:37 +0200 Subject: [PATCH] build: tell user about removal of non-git repo --- build/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/common.sh b/build/common.sh index 6b3b43a..008f2f6 100644 --- a/build/common.sh +++ b/build/common.sh @@ -251,7 +251,9 @@ git_clone() fi if [ -d "${1}" ]; then + echo -n ">>> Removing ${1}... " rm -r "${1}" + echo "done" fi echo ">>> Cloning ${1}:"