commit f73dc06a9b251d35c5bee7b0461933c0038e2088
parent 8c28a113881dc55924bcabbb6205d762386e43c4
Author: Cem Keylan <cem@ckyln.com>
Date: Fri, 24 Jul 2020 14:42:27 +0300
tools: leave an empty line on tools with multi-line usage output.
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tools/cpt-install b/tools/cpt-install
@@ -10,7 +10,7 @@ while [ "$1" ]; do
out "usage: ${0##*/} [options] [pkg...]" "" \
" Options:" \
" --force Force installation" \
- " --root [rootdir] Use an alternate root directory"
+ " --root [rootdir] Use an alternate root directory" ""
exit 1
;;
--version|-v) version ;;
diff --git a/tools/cpt-remove b/tools/cpt-remove
@@ -10,7 +10,7 @@ while [ "$1" ]; do
out "usage: ${0##*/} [options] [pkg...]" "" \
" Options:" \
" --force Force Removal" \
- " --root [rootdir] Use an alternate root directory"
+ " --root [rootdir] Use an alternate root directory" ""
exit 1
;;
--version|-v) version ;;
diff --git a/tools/cpt-search b/tools/cpt-search
@@ -12,7 +12,7 @@ case "$1" in
--help|-h|'')
out "usage: ${0##*/} [--single] [pkg...]" "" \
" Options:" \
- " --single Only show the first instance of a package"
+ " --single Only show the first instance of a package" ""
exit 0
;;
--version|-v) version ;;
diff --git a/tools/cpt-update b/tools/cpt-update
@@ -11,7 +11,7 @@ while [ "$1" ]; do
" Options:" \
" -d --download Only download updatable packages" \
" --no-fetch Do not refresh the repositories" \
- " --root [rootdir] Use an alternate root directory"
+ " --root [rootdir] Use an alternate root directory" ""
exit 1
;;
--version|-v) version ;;