diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-08-20 15:16:48 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-08-23 00:09:06 +0200 |
commit | 948fedc5f7d1c57a5cc172778818c38ed97d134d (patch) | |
tree | 22312603ea7c1a37738db7b9f3969a46740afffd /apkgrel.in | |
parent | e8508f7b187ad23ff6b52dfbe0db0ac9d8e18fdf (diff) | |
download | abuild-948fedc5f7d1c57a5cc172778818c38ed97d134d.tar.gz abuild-948fedc5f7d1c57a5cc172778818c38ed97d134d.tar.bz2 abuild-948fedc5f7d1c57a5cc172778818c38ed97d134d.tar.xz abuild-948fedc5f7d1c57a5cc172778818c38ed97d134d.zip |
indent heredocs when possible
Diffstat (limited to 'apkgrel.in')
-rw-r--r-- | apkgrel.in | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -73,21 +73,21 @@ do_nothing() { } usage() { - cat >&2 <<__EOF__ -$program $program_version - 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 - -g, --clean-git Only operate on APKBUILDs with clean git status (implies - --add) - -s, --set NUM Set pkgrel to NUM - -t, --test Only verify that files have a valid pkgrel - -f, --force Operate on files without a valid pkgrel - -h, --help Show this help - -__EOF__ + cat >&2 <<-__EOF__ + $program $program_version - 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 + -g, --clean-git Only operate on APKBUILDs with clean git status (implies + --add) + -s, --set NUM Set pkgrel to NUM + -t, --test Only verify that files have a valid pkgrel + -f, --force Operate on files without a valid pkgrel + -h, --help Show this help + + __EOF__ } cmd=do_show |