Browse Source

Added some logging

master
Drew Short 9 years ago
parent
commit
630a922127
  1. 2
      scripts/bootstrap.sh

2
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 .

Loading…
Cancel
Save