summaryrefslogtreecommitdiffstats
path: root/abump.in
diff options
context:
space:
mode:
Diffstat (limited to 'abump.in')
-rwxr-xr-xabump.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/abump.in b/abump.in
index eef57d5..c16d2c1 100755
--- a/abump.in
+++ b/abump.in
@@ -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