git: c4faabf62b35 - main - biology/gatk: Prevent execution of git hooks from $DISTDIR during fetch

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Sat, 13 Jul 2024 18:35:29 UTC
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c4faabf62b358738e306b0ae712f61158c01086e

commit c4faabf62b358738e306b0ae712f61158c01086e
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-07-13 18:35:06 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-07-13 18:35:06 +0000

    biology/gatk: Prevent execution of git hooks from $DISTDIR during fetch
---
 biology/gatk/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/biology/gatk/Makefile b/biology/gatk/Makefile
index cbf0367d6a18..8b3f6e3a7572 100644
--- a/biology/gatk/Makefile
+++ b/biology/gatk/Makefile
@@ -63,7 +63,7 @@ do-fetch:
 			${MKDIR} ${WRKDIR}; \
 			HOME=${WRKDIR}; \
 			git config --global filter.lfs.smudge "git-lfs smudge -- %f" && \
-			GIT_CLONE_PROTECTION_ACTIVE=false git clone -q https://github.com/broadinstitute/gatk.git ${PORTNAME}-${DISTVERSION} && \
+			GIT_CLONE_PROTECTION_ACTIVE=false git clone -nq https://github.com/broadinstitute/gatk.git ${PORTNAME}-${DISTVERSION} && \
 			(cd ${PORTNAME}-${DISTVERSION} && git reset -q --hard ${DISTVERSION} && ${RM} -r .git) && \
 			${RM} -r ${WRKDIR} \
 		) && \