From 630a922127196192c703ad07909b68cdcc5bfd85 Mon Sep 17 00:00:00 2001 From: Drew Short Date: Tue, 15 Sep 2015 10:49:38 -0500 Subject: [PATCH] Added some logging --- scripts/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 1b4fc46..50975ec 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -69,9 +69,11 @@ clone_git_repo() { local repo=$2 if [ ! -d "$target" ]; then mkdir -p "$target" + echo "Cloning [$repo] into [$target]" git clone "$repo" "$target" else # Update the repo otherwise + echo "Updating [$repo]" cur_dir=$PWD cd "$target" git checkout .