diff options
Diffstat (limited to 'abump.in')
-rwxr-xr-x | abump.in | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -81,8 +81,8 @@ fixes #${fixes#\#} usage() { cat >&2 <<__EOF__ -$prog $abuild_ver - bump pkgver in APKBUILDs -Usage: $prog [-s CVE-1,CVE-2,...] [-f ISSUE] [-R|--recursive] [-k|--keep] PKGNAME-1.2.3 ... +$program $abuild_ver - bump pkgver in APKBUILDs +Usage: $program [-s CVE-1,CVE-2,...] [-f ISSUE] [-R|--recursive] [-k|--keep] PKGNAME-1.2.3 ... Options: -s, --security CVE1,CVE-2,... Security update -f, --fixes ISSUE Fixes ISSUE @@ -102,7 +102,8 @@ fixes= [ -n "$APORTSDIR" ] || error "can't locate \$APORTSDIR" git rev-parse 2>/dev/null || die "not in a git tree" -args=`getopt -o f:s:Rkqh --long fixes:,security:,recursive,keep,quiet,help -n "$prog" -- "$@"` +args=`getopt -o f:s:Rkqh --long fixes:,security:,recursive,keep,quiet,help \ + -n "$program" -- "$@"` if [ $? -ne 0 ]; then usage exit 2 |