Merge pull request #14 from reecetech/fix-git-fetch-tags-issue

[DE-4875] Forcing git fetch tags
This commit is contained in:
Asanga K
2022-02-25 13:36:45 +11:00
committed by GitHub

View File

@@ -27,7 +27,7 @@ fi
# Skip if testing, otherwise pull tags
if [[ -z "${BATS_VERSION:-}" ]] ; then
git fetch --quiet origin 'refs/tags/*:refs/tags/*'
git fetch --quiet --force origin 'refs/tags/*:refs/tags/*'
fi
##==----------------------------------------------------------------------------