Add a little "cloning" output so it's clear why the script hangs

This commit is contained in:
Tianon Gravi 2014-09-18 10:10:17 -06:00
parent b2313c47b9
commit caece97e47
1 changed files with 2 additions and 0 deletions

View File

@ -56,7 +56,9 @@ for repoTag in "${repos[@]}"; do
if [ ! -d "$gitRepo" ]; then
mkdir -p "$(dirname "$gitRepo")"
echo "Cloning '$gitUrl' into '$gitRepo' ..."
git clone -q "$gitUrl" "$gitRepo"
echo 'Cloned successfully!'
fi
repoGitRepo[$repo:$tag]="$gitRepo"