diff --git a/dist/index.js b/dist/index.js index f4af77a..67752ae 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1260,7 +1260,6 @@ function getSource(settings) { else { fetchOptions.fetchDepth = settings.fetchDepth; fetchOptions.fetchTags = settings.fetchTags; - fetchOptions.showProgress = settings.showProgress; const refSpec = refHelper.getRefSpec(settings.ref, settings.commit); yield git.fetch(refSpec, fetchOptions); } diff --git a/src/git-source-provider.ts b/src/git-source-provider.ts index acbf688..c1360b8 100644 --- a/src/git-source-provider.ts +++ b/src/git-source-provider.ts @@ -177,7 +177,6 @@ export async function getSource(settings: IGitSourceSettings): Promise { } else { fetchOptions.fetchDepth = settings.fetchDepth fetchOptions.fetchTags = settings.fetchTags - fetchOptions.showProgress = settings.showProgress const refSpec = refHelper.getRefSpec(settings.ref, settings.commit) await git.fetch(refSpec, fetchOptions) }