build dist

This commit is contained in:
parker-michel-vanta 2025-07-16 10:33:58 -04:00
parent 819730283a
commit 220570c515

2
dist/index.js vendored
View file

@ -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'))) {