We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb75353 commit d9e7682Copy full SHA for d9e7682
easybuild/tools/filetools.py
@@ -2878,6 +2878,7 @@ def reproducible_filter(tarinfo):
2878
2879
# TODO: replace with TarFile.add(recursive=True) when support for Python 3.6 drops
2880
# since Python v3.7 tarfile automatically orders the list of files added to the archive
2881
+ # see Tarfile.add documentation: https://docs.python.org/3/library/tarfile.html#tarfile.TarFile.add
2882
source_files = [source_dir]
2883
# pathlib's glob includes hidden files
2884
source_files.extend([str(filepath) for filepath in pathlib.Path(source_dir).glob("**/*")])
0 commit comments