From f89cf81941bf0de5858653476a3ee626707a3a21 Mon Sep 17 00:00:00 2001 From: Clienthax Date: Tue, 27 May 2014 02:13:56 +0100 Subject: [PATCH] Use shallow clone instead of full checkout --- libretro-fetch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-fetch.sh b/libretro-fetch.sh index 67954104..43ab3704 100755 --- a/libretro-fetch.sh +++ b/libretro-fetch.sh @@ -45,7 +45,7 @@ fetch_project() git pull cd .. else - git clone "$1" "$2" + git clone --depth 1 "$1" "$2" fi echo "=== Fetched ===" }