Commit 6d594682 by Joseph Mulloy Committed by Brian Beggs

Switch to string comparison to fix issue #170

parent f381dd6c
...@@ -33,7 +33,7 @@ do ...@@ -33,7 +33,7 @@ do
if [ -d "$name" ]; then if [ -d "$name" ]; then
printf "The [%s] repo is already checked out. Continuing.\n" $name printf "The [%s] repo is already checked out. Continuing.\n" $name
else else
if [ "$SHALLOW_CLONE" -eq 1 ]; then if [ "${SHALLOW_CLONE}" == "1" ]; then
git clone --depth=1 $repo git clone --depth=1 $repo
else else
git clone $repo git clone $repo
......
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