Skip to content

Commit 20b113c

Browse files
authored
Merge pull request #2249 from MichielCottaar/fix-eddy
BUG: check for eddy_openmp in the right place
2 parents 96c359d + 2bb213d commit 20b113c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/fsl/epi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ def _run_interface(self, runtime):
592592
cmd = self._cmd
593593
if all((FSLDIR != '',
594594
cmd == 'eddy_openmp',
595-
not os.path.exists(os.path.join(FSLDIR, cmd)))):
595+
not os.path.exists(os.path.join(FSLDIR, 'bin', cmd)))):
596596
self._cmd = 'eddy'
597597
runtime = super(Eddy, self)._run_interface(runtime)
598598

0 commit comments

Comments
 (0)