Skip to content

Commit 33a5030

Browse files
authored
Merge pull request #4568 from Flamefire/fix-progressbar
fix fetch progress bar showing to many files
2 parents 5f00b71 + 92fb406 commit 33a5030

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

easybuild/framework/easyblock.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,9 @@ def obtain_file(self, filename, extension=False, urls=None, download_filename=No
754754
"""
755755
srcpaths = source_paths()
756756

757-
update_progress_bar(PROGRESS_BAR_DOWNLOAD_ALL, label=filename)
757+
# We don't account for the checksums file in the progress bar
758+
if filename != 'checksum.json':
759+
update_progress_bar(PROGRESS_BAR_DOWNLOAD_ALL, label=filename)
758760

759761
if alt_location is None:
760762
location = self.name

0 commit comments

Comments
 (0)