Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jul 2024 18:35:29 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: c4faabf62b35 - main - biology/gatk: Prevent execution of git hooks from $DISTDIR during fetch
Message-ID:  <202407131835.46DIZTJq074715@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \
 		) && \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202407131835.46DIZTJq074715>