Skip to content

Commit c2a0168

Browse files
authored
Merge pull request #1 from actions/test-show-progress
dist/index.js
2 parents 8e8c483 + bab023d commit c2a0168

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,7 @@ function getSource(settings) {
15341534
else {
15351535
fetchOptions.fetchDepth = settings.fetchDepth;
15361536
fetchOptions.fetchTags = settings.fetchTags;
1537+
fetchOptions.showProgress = settings.showProgress;
15371538
const refSpec = refHelper.getRefSpec(settings.ref, settings.commit);
15381539
yield git.fetch(refSpec, fetchOptions);
15391540
}

src/git-source-provider.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ export async function getSource(settings: IGitSourceSettings): Promise<void> {
186186
} else {
187187
fetchOptions.fetchDepth = settings.fetchDepth
188188
fetchOptions.fetchTags = settings.fetchTags
189+
fetchOptions.showProgress = settings.showProgress
189190
const refSpec = refHelper.getRefSpec(settings.ref, settings.commit)
190191
await git.fetch(refSpec, fetchOptions)
191192
}

0 commit comments

Comments
 (0)