diff options
author | Karl Berry <karl@freefriends.org> | 2024-01-16 21:27:20 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2024-01-16 21:27:20 +0000 |
commit | 42e3678d81208a8374996edf5cc04929128f2733 (patch) | |
tree | 47378f7fca3796dbac852cf47c5df7404ceb705f /Master/texmf-dist/scripts/bibcop | |
parent | 84b532c711d3e644d6ba05e8118356310fd68fbf (diff) |
bibcop (16jan24)
git-svn-id: svn://tug.org/texlive/trunk@69454 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/bibcop')
-rwxr-xr-x | Master/texmf-dist/scripts/bibcop/bibcop.pl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/bibcop/bibcop.pl b/Master/texmf-dist/scripts/bibcop/bibcop.pl index 2b44f2d5712..f1e5121ffcd 100755 --- a/Master/texmf-dist/scripts/bibcop/bibcop.pl +++ b/Master/texmf-dist/scripts/bibcop/bibcop.pl @@ -21,7 +21,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -# 2024-01-12 0.0.17 +# 2024-01-16 0.0.18 package bibcop; use warnings; @@ -894,7 +894,7 @@ sub fail { } if (not basename($0) eq 'bibcop.pl') { - return 1; + goto END; } if (@ARGV+0 eq 0 or exists $args{'--help'} or exists $args{'-?'}) { @@ -917,7 +917,7 @@ if (@ARGV+0 eq 0 or exists $args{'--help'} or exists $args{'-?'}) { " --latex Report errors in LaTeX format using \\PackageWarningNoLine command\n\n" . "If any issues, report to GitHub: https://github.com/yegor256/bibcop"); } elsif (exists $args{'--version'} or exists $args{'-v'}) { - info('0.0.17 2024-01-12'); + info('0.0.18 2024-01-16'); } else { my ($file) = grep { not($_ =~ /^-.*$/) } @ARGV; if (not $file) { @@ -957,5 +957,7 @@ if (@ARGV+0 eq 0 or exists $args{'--help'} or exists $args{'-?'}) { } } +END: + # In order to finish it with success: 1; |