diff options
author | Norbert Preining <preining@logic.at> | 2016-04-18 01:57:27 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2016-04-18 01:57:27 +0000 |
commit | a6ed5380669adc157133e2d57ec3ee8977172fd4 (patch) | |
tree | 1ed5e828aeeeb84db7f479b9c51ae65fa5fb1d0f /Master | |
parent | 20ab5e051a4afd162124093b5dc597fc5955cf44 (diff) |
tl-sign-file: we need 1 argument, not 0
git-svn-id: svn://tug.org/texlive/trunk@40588 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tl-sign-file | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tl-sign-file b/Master/tlpkg/bin/tl-sign-file index b0fe58bfba0..779c0af84e7 100755 --- a/Master/tlpkg/bin/tl-sign-file +++ b/Master/tlpkg/bin/tl-sign-file @@ -3,7 +3,7 @@ # Public domain. Originally written 2016, Norbert Preining # Sign a file for release in TeX Live -if test $# -ne 0; then +if test $# -ne 1; then echo "$0: Exactly one argument must be given, the file to sign." >&2 exit 1 fi |