From 27b3ff5c51b77d6155d3fb3d945d24851409f9bb Mon Sep 17 00:00:00 2001 From: adrianjost <22987140+adrianjost@users.noreply.github.com> Date: Fri, 19 Feb 2021 21:05:35 +0100 Subject: [PATCH] fix: skip GIT_LFS files --- src/git.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/git.js b/src/git.js index cd42808..fcad285 100644 --- a/src/git.js +++ b/src/git.js @@ -50,6 +50,7 @@ module.exports = { const clone = async () => { const command = [ + "GIT_LFS_SKIP_SMUDGE=1", "git clone", "--depth 1", getRepoBranch() === undefined ? false : ` -b ${getRepoBranch()}`,