Commit fa12a18c by Brian Beggs

Updated test to deal with issue #170

parent f909da86
......@@ -33,10 +33,10 @@ do
if [ -d "$name" ]; then
printf "The [%s] repo is already checked out. Continuing.\n" $name
else
if [ "$SHALLOW_CLONE" -eq 1 ]; then
git clone --depth=1 $repo
else
if [ -z ${SHALLOW_CLONE+0} -o "${SHALLOW_CLONE}" -ne "1" ]; then
git clone $repo
else
git clone --depth=1 $repo
fi
fi
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment