Merge pull request #57 from clienthax/master

Use shallow clone instead of full checkout
This commit is contained in:
Twinaphex 2014-05-27 03:15:44 +02:00
commit 1545a9b3ca

View File

@ -45,7 +45,7 @@ fetch_project()
git pull git pull
cd .. cd ..
else else
git clone "$1" "$2" git clone --depth 1 "$1" "$2"
fi fi
echo "=== Fetched ===" echo "=== Fetched ==="
} }