diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-25 07:24:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-10-25 07:24:46 +0000 |
commit | 1822f3f624e35898908fbe5edc0d282cefb92ac0 (patch) | |
tree | e5f78a494fc11f4fcbc3c88ec26564b7cdbe75a2 /apkgrel.in | |
parent | a924d3c171f81a28fe0610e76274a0b7f8473f64 (diff) | |
download | abuild-1822f3f624e35898908fbe5edc0d282cefb92ac0.tar.gz abuild-1822f3f624e35898908fbe5edc0d282cefb92ac0.tar.bz2 abuild-1822f3f624e35898908fbe5edc0d282cefb92ac0.tar.xz abuild-1822f3f624e35898908fbe5edc0d282cefb92ac0.zip |
functions: rename prog to program
Diffstat (limited to 'apkgrel.in')
-rw-r--r-- | apkgrel.in | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -74,8 +74,8 @@ do_nothing() { usage() { cat >&2 <<__EOF__ -$prog $abuild_ver - display or bump pkgrel in APKBUILDs -Usage: $prog [-z|--zero] [-a|--add] [-g|--clean-git] [-s|--set NUM] [-t|--test] [-f|--force] DIR or APKBUILD... +$program $abuild_ver - display or bump pkgrel in APKBUILDs +Usage: $program [-z|--zero] [-a|--add] [-g|--clean-git] [-s|--set NUM] [-t|--test] [-f|--force] DIR or APKBUILD... Options: -z, --zero Set pkgrel to 0 -a, --add Add 1 to current pkgrel @@ -93,7 +93,8 @@ force= setto= only_clean_git= -args=`getopt -o zags:tfqh --long zero,add,clean-git,set:,test,force,quiet,help -n "$prog" -- "$@"` +args=`getopt -o zags:tfqh --long zero,add,clean-git,set:,test,force,quiet,help \ + -n "$program" -- "$@"` if [ $? -ne 0 ]; then usage exit 2 |