kiss: Shallow clone git sources where possible. Also avoid pulling down tags. See #270

This commit is contained in:
Dylan Araps 2021-09-10 17:07:54 +03:00
parent 60c32c5fa2
commit a4f7765f94
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 2 additions and 4 deletions

6
kiss
View File

@ -454,10 +454,8 @@ pkg_source_git() {
git remote set-url origin "${2%[#@]*}" 2>/dev/null ||
git remote add origin "${2%[#@]*}"
git fetch -t origin "$com" ||
git fetch -t
git -c advice.detachedHead=0 checkout "${com:-FETCH_HEAD}"
git fetch --depth=1 origin "$com"
git reset --hard FETCH_HEAD
}
pkg_source_tar() {