Skip to content

Commit f56d12b

Browse files
committed
fix
Signed-off-by: oliver könig <[email protected]>
1 parent 2c594ea commit f56d12b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nemo_run/core/execution/dgxcloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def fetch_logs(
405405
job_subdir = self.job_dir[len(nemo_run_home) + 1 :] # +1 to remove the initial backslash
406406
self.pvc_job_dir = os.path.join(self.pvc_nemo_run_dir, job_subdir)
407407

408-
cmd.append(f"{self.pvc_job_dir}/logs/output-*.log")
408+
cmd.extend([os.path.expandvars(f"{self.pvc_job_dir}/logs/output-*.log")])
409409

410410
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, text=True, bufsize=1)
411411

0 commit comments

Comments
 (0)