Skip to content
Snippets Groups Projects
Commit e041f232 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Fix fslpython/w arg pass-through, fix permissions

parent fd47b96b
No related branches found
No related tags found
1 merge request!3Rf/copyrights
bin/fslpython 100644 → 100755
......@@ -5,4 +5,4 @@ if [ "$FSLDIR" = "" ] ; then
exit 1
fi
exec ${FSLDIR}/bin/python $*
exec ${FSLDIR}/bin/python "$@"
bin/fslpythonw 100644 → 100755
......@@ -6,7 +6,7 @@ if [ "$FSLDIR" = "" ] ; then
fi
if [ -e ${FSLDIR}/bin/pythonw ]; then
exec ${FSLDIR}/bin/pythonw $*
exec ${FSLDIR}/bin/pythonw "$@"
else
exec ${FSLDIR}/bin/pythonw $*
exec ${FSLDIR}/bin/python "$@"
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment