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 71c2c3f commit abb82f0Copy full SHA for abb82f0
nemo_run/core/packaging/git.py
@@ -89,6 +89,8 @@ def _concatenate_tar_files(
89
quoted_output_file = shlex.quote(output_file)
90
91
# Extract all fragments and repack once (faster than iterative extract/append)
92
+ # Note: Avoid using tar Af based solution as it does not properly concatenate
93
+ # tar files for additional filepaths and submodules.
94
temp_dir = f"temp_extract_{uuid.uuid4()}"
95
ctx.run(f"mkdir -p {temp_dir}")
96
for file in quoted_files:
0 commit comments