From 220570c5154ca880f619459063207cd438085e1c Mon Sep 17 00:00:00 2001 From: parker-michel-vanta Date: Wed, 16 Jul 2025 10:33:58 -0400 Subject: [PATCH] build dist --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 2d696f7..f2651f8 100644 --- a/dist/index.js +++ b/dist/index.js @@ -666,7 +666,7 @@ class GitCommandManager { if (options.shallowSince) { args.push(`--shallow-since=${options.shallowSince}`); } - else if (options.fetchDepth && options.fetchDepth > 0) { + if (options.fetchDepth && options.fetchDepth > 0) { args.push(`--depth=${options.fetchDepth}`); } else if (fshelper.fileExistsSync(path.join(this.workingDirectory, '.git', 'shallow'))) {