=== modified file 'bash_completion.d/pbuilder' --- bash_completion.d/pbuilder 2010-06-23 07:21:11 +0000 +++ bash_completion.d/pbuilder 2012-02-11 13:27:53 +0000 @@ -14,11 +14,11 @@ COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} - options='--create --update --build --login --execute --dumpconfig' + options='--create create --update update --build build --login login --execute execute --dumpconfig dumpconfig' if [ $COMP_CWORD -eq 1 ]; then COMPREPLY=( $( compgen -W "$options" | grep "^$cur" ) ) - elif [ "${COMP_WORDS[1]}" = --build ]; then + elif [ "${COMP_WORDS[1]}" = --build -o "${COMP_WORDS[1]}" = build ]; then COMPREPLY=( $( compgen -o filenames -G "$cur*.dsc" ) ) fi