From 305b48342dcfabdeb9a12d9bc3633098e148e00b Mon Sep 17 00:00:00 2001 From: Nick Kavalieris Date: Thu, 19 Mar 2015 22:10:18 +0200 Subject: [PATCH] Changed the parameters of git clonning for PKGBUILD as suggested by geotz --- scripts/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/PKGBUILD b/scripts/PKGBUILD index 3c46bbd..67add23 100644 --- a/scripts/PKGBUILD +++ b/scripts/PKGBUILD @@ -29,7 +29,7 @@ prepare() { cd $_gitname && git pull origin msg "The local files are updated." else - git clone --depth=1 $_gitroot $_gitname + git clone -b master --single-branch $_gitroot $_gitname fi msg "Git checkout done." }