Add a little "cloning" output so it's clear why the script hangs
This commit is contained in:
parent
b2313c47b9
commit
caece97e47
2
build.sh
2
build.sh
|
|
@ -56,7 +56,9 @@ for repoTag in "${repos[@]}"; do
|
||||||
|
|
||||||
if [ ! -d "$gitRepo" ]; then
|
if [ ! -d "$gitRepo" ]; then
|
||||||
mkdir -p "$(dirname "$gitRepo")"
|
mkdir -p "$(dirname "$gitRepo")"
|
||||||
|
echo "Cloning '$gitUrl' into '$gitRepo' ..."
|
||||||
git clone -q "$gitUrl" "$gitRepo"
|
git clone -q "$gitUrl" "$gitRepo"
|
||||||
|
echo 'Cloned successfully!'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
repoGitRepo[$repo:$tag]="$gitRepo"
|
repoGitRepo[$repo:$tag]="$gitRepo"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue