Fix problem where bash completion script would not allow user to complete file names
This commit is contained in:
parent
fa75eedb36
commit
cc7dab0341
|
@ -38,6 +38,8 @@ _dfmt()
|
|||
return 0
|
||||
;;
|
||||
*)
|
||||
COMPREPLY=($(compgen -f -- ${cur}))
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
||||
|
|
Loading…
Reference in New Issue