diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2012-03-25 14:56:40 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@netfort.gr.jp> | 2012-03-25 14:56:40 +0900 |
commit | 5c8e7b60d76825ffd97181430c9f34a781abf26b (patch) | |
tree | f936e26d1ba24017318402cb590c6d483e9af3ca | |
parent | 76dc30abb0a32c2d966a8a9adca1fad6154e4b8d (diff) | |
download | pbuilder-5c8e7b60d76825ffd97181430c9f34a781abf26b.tar pbuilder-5c8e7b60d76825ffd97181430c9f34a781abf26b.tar.gz |
Bug#664323: pbuilder: Auto completion is missing --allow-untrusted flag
-rw-r--r-- | bash_completion.d/pbuilder | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/bash_completion.d/pbuilder b/bash_completion.d/pbuilder index 2dd3a9c..454d470 100644 --- a/bash_completion.d/pbuilder +++ b/bash_completion.d/pbuilder @@ -53,13 +53,14 @@ _pbuilder() ;; *) # Provide available flags - COMPREPLY=( $( compgen -W '--basetgz --buildplace --mirror --othermirror \ - --http-proxy --distribution --architecture --components --buildresult \ - --aptcache --removepackages --extrapackages --configfile --hookdir \ - --debemail --debbuildopts --logfile --pkgname-logfile --aptconfdir \ - --timeout --override-config --binary-arch --preserve-buildplace \ - --bindmounts --debug --twice --autocleanaptcache --compressprog \ - --debootstrapopts --save-after-login --save-after-exec --debootstrap' \ + COMPREPLY=( $( compgen -W '--allow-untrusted --basetgz --buildplace --mirror \ + --othermirror --http-proxy --distribution --architecture --components \ + --buildresult --aptcache --removepackages --extrapackages --configfile \ + --hookdir --debemail --debbuildopts --logfile --pkgname-logfile \ + --aptconfdir --timeout --override-config --binary-arch \ + --preserve-buildplace --bindmounts --debug --twice --autocleanaptcache \ + --compressprog --debootstrapopts --save-after-login --save-after-exec \ + --debootstrap' \ -- "$cur" ) ) if [[ $prev = @(--aptcache|--hookdir) ]]; then # Optionally provide a directory |