Browse Source

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

Tianon Gravi 11 years ago
parent
commit
7b7a842d77
1 changed files with 2 additions and 0 deletions
  1. 2 0
      bashbrew/build.sh

+ 2 - 0
bashbrew/build.sh

@@ -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"