1
1

complation: fix filename completion for bash completion

cmr=v1.8.1:reviewer=jsquyres

This commit was SVN r31307.
Этот коммит содержится в:
Nathan Hjelm 2014-04-02 21:29:34 +00:00
родитель 1e37dcf976
Коммит b709dc9e5a

Просмотреть файл

@ -194,6 +194,8 @@ _mpirun() {
elif test "${cur:0:1}" = "-" ; then
switches=$(_get_mpirun_switches)
COMPREPLY=($(compgen -W "$switches" -- "$cur"))
else
COMPREPLY=($(compgen -f -- "$cur"))
fi
return 0