From 8471d8a73a9c0f90923109fcac1e30d53159576b Mon Sep 17 00:00:00 2001 From: Sam Lijin Date: Fri, 24 Jul 2026 17:45:57 -0700 Subject: [PATCH] Regenerate dist --- dist/index.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dist/index.js b/dist/index.js index 06ae5d2..37e10ac 100644 --- a/dist/index.js +++ b/dist/index.js @@ -35816,6 +35816,9 @@ class GitCommandManager { const output = await this.execGit(['rev-parse', '--symbolic-full-name', '--verify', '--quiet', 'HEAD'], true); return !output.stdout.trim().startsWith('refs/heads/'); } + async lfsCheckout() { + await this.execGit(['lfs', 'checkout']); + } async lfsFetch(ref) { const args = ['lfs', 'fetch', 'origin', ref]; const that = this; @@ -41879,6 +41882,12 @@ async function getSource(settings) { startGroup('Checking out the ref'); await git.checkout(checkoutInfo.ref, checkoutInfo.startPoint); endGroup(); + // LFS checkout + if (settings.lfs && !settings.sparseCheckout) { + startGroup('Checking out LFS objects'); + await git.lfsCheckout(); + endGroup(); + } // Submodules if (settings.submodules) { // Temporarily override global config