Skip to content

Commit 631694c

Browse files
authored
HOTFIX: work_dir was not made absolute
That was confusing the base_directory of reportlets, which were being written under the DataSink folder.
1 parent 76bbfc5 commit 631694c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/cli/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ def build_workflow(opts, retval):
589589

590590
bids_dir = opts.bids_dir.resolve()
591591
output_dir = opts.output_dir.resolve()
592-
work_dir = opts.work_dir
592+
work_dir = opts.work_dir.resolve()
593593

594594
retval['return_code'] = 1
595595
retval['workflow'] = None

0 commit comments

Comments
 (0)