summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2018-12-01 16:28:17 +0100
committerBruno Haible <bruno@clisp.org>2018-12-01 16:28:17 +0100
commitef499218fb68054e94522aa6569a1dde8ba32e74 (patch)
tree27c9ad47fdf14ba0780de30ec1ab664f5646e57b
parent5e9a8b60ed42c597f4f5f0e69c0599e30225afef (diff)
downloadgnulib-ef499218fb68054e94522aa6569a1dde8ba32e74.tar.gz
gnupload: Document short options.
* build-aux/gnupload (usage): Document the short options.
-rw-r--r--ChangeLog5
-rwxr-xr-xbuild-aux/gnupload6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 4eddf627d8..76d6966e4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-12-01 Bruno Haible <bruno@clisp.org>
+
+ gnupload: Document short options.
+ * build-aux/gnupload (usage): Document the short options.
+
2018-11-28 Ben Elliston <bje@gnu.org>
gnupload: Support option -h as alias of --help.
diff --git a/build-aux/gnupload b/build-aux/gnupload
index 64f9218153..801cf75356 100755
--- a/build-aux/gnupload
+++ b/build-aux/gnupload
@@ -77,10 +77,10 @@ Options:
--user NAME sign with key NAME
--replace allow replacements of existing files
--symlink-regex[=EXPR] use sed script EXPR to compute symbolic link names
- --dry-run do nothing, show what would have been done
+ -n, --dry-run do nothing, show what would have been done
(including the constructed directive file)
--version output version information and exit
- --help print this help text and exit
+ -h, --help print this help text and exit
If --symlink-regex is given without EXPR, then the link target name
is created by replacing the version information with '-latest', e.g.:
@@ -194,7 +194,7 @@ while test -n "$1"; do
--symlink)
collect_var=symlink_files
;;
- --dry-run|-n)
+ -n | --dry-run)
dry_run=:
;;
--version)