repair index: always read Quiet flags from GlobalOptions passed as parameter

This commit is contained in:
Michael Eischer 2023-05-08 18:40:23 +02:00
parent b93459cbb0
commit 8e913e6d3a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ func rebuildIndex(ctx context.Context, opts RepairIndexOptions, gopts GlobalOpti
if len(packSizeFromList) > 0 {
Verbosef("reading pack files\n")
bar := newProgressMax(!globalOptions.Quiet, uint64(len(packSizeFromList)), "packs")
bar := newProgressMax(!gopts.Quiet, uint64(len(packSizeFromList)), "packs")
invalidFiles, err := repo.CreateIndexFromPacks(ctx, packSizeFromList, bar)
bar.Done()
if err != nil {