Skip to content

Commit 6a80b2e

Browse files
committed
fix lfs
1 parent a312f65 commit 6a80b2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker/build_scripts/install-git-lfs.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ curl -fsSLo "${GIT_LFS_SHA256}" "https://github.com/git-lfs/git-lfs/releases/dow
3535
curl -fsSLo "${GIT_LFS_ARCHIVE}" "https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/${GIT_LFS_ARCHIVE}"
3636

3737
gpg -d "${GIT_LFS_SHA256}" | grep "${GIT_LFS_ARCHIVE}" | sha256sum -c
38-
gpgconf --kill gpg-agent
38+
if [ "${AUDITWHEEL_POLICY}" != "manylinux2014" ]; then
39+
gpgconf --kill gpg-agent
40+
fi
3941

4042
mkdir git-lfs
4143
tar -C git-lfs -xf "${GIT_LFS_ARCHIVE}" --strip-components 1

0 commit comments

Comments
 (0)