Skip to content

Commit af84f02

Browse files
committed
fix path for stdout/stderr
1 parent f2907c0 commit af84f02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydra/engine/workers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -910,8 +910,8 @@ def make_spec(self, cmd=None, arg=None):
910910
spec = self.psij.JobSpec()
911911
spec.executable = cmd
912912
spec.arguments = arg
913-
spec.stdout_path = "/pydra/pydra/engine/demo.stdout"
914-
spec.stderr_path = "/pydra/pydra/engine/demo.stderr"
913+
spec.stdout_path = "demo.stdout"
914+
spec.stderr_path = "demo.stderr"
915915

916916
return spec
917917

0 commit comments

Comments
 (0)