diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-06-07 12:01:03 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-06-26 06:02:05 +0200 |
commit | 7245bc8e8e01149e076e820ea251f23839b1e0b2 (patch) | |
tree | a49b6d1f03eee51f6cbd2171139f6423d9c98311 /scripts | |
parent | 6a5370b634c6b01b5c76c9577e1ca4007dbcc8bd (diff) | |
download | pacman-7245bc8e8e01149e076e820ea251f23839b1e0b2.tar.gz pacman-7245bc8e8e01149e076e820ea251f23839b1e0b2.tar.xz |
pkgdelta: add missing --version longopt
This was missed in the switch to parseopts, and was caught by distcheck.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/pkgdelta.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index 0aa6169a..03193667 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pkgdelta.sh.in @@ -157,7 +157,7 @@ create_xdelta() } OPT_SHORT='hqV' -OPT_LONG=('help' 'quiet' 'max-delta-size:' 'min-pkg-size:') +OPT_LONG=('help' 'quiet' 'max-delta-size:' 'min-pkg-size:' 'version') if ! parseopts "$OPT_SHORT" "${OPT_LONG[@]}" -- "$@"; then exit 1 fi |