diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-12-30 19:07:59 +0100 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-12-30 19:08:06 +0100 |
| commit | 3b272210ce1c3c344eaf5a91ce977631492575a5 (patch) | |
| tree | e11cc64108fbac74c8a68ebc94f17c0af0019df9 | |
| parent | d7921c316d01cd66ab7d7dcdd283f856e883b1da (diff) | |
| download | vendor_replicant-release-scripts-3b272210ce1c3c344eaf5a91ce977631492575a5.tar.gz vendor_replicant-release-scripts-3b272210ce1c3c344eaf5a91ce977631492575a5.tar.bz2 vendor_replicant-release-scripts-3b272210ce1c3c344eaf5a91ce977631492575a5.zip | |
releasetag.sh: fix help
The square brackets ([]) are most of the time used for optional
arguments, but here the REPLICANT_DIR argument is mandatory, so we use
the Less-than and more-than signs (<>) instead as they are typically
used for mandatory arguments.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
| -rwxr-xr-x | releasetag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/releasetag.sh b/releasetag.sh index c8f6692..734fa3d 100755 --- a/releasetag.sh +++ b/releasetag.sh @@ -47,7 +47,7 @@ tag_repos () { } print_help () { - echo "$SCRIPT: [REPLICANT_DIR]" + echo "$SCRIPT: <REPLICANT_DIR>" } # Check for the correct number of args |
