Skip to content

Commit

Permalink
Merge pull request #254 from lorenzleutgeb/patch-1
Browse files Browse the repository at this point in the history
Fix non-zero exit code for --version
  • Loading branch information
ftilmann authored Jan 29, 2022
2 parents af22466 + 0ed1082 commit 82e61ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion latexdiff-vc
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ if ( $help ) {
}

if ( $version ) {
die $versionstring ;
print STDERR $versionstring ;
exit 0;
}

if ( $so ) {
Expand Down

0 comments on commit 82e61ee

Please sign in to comment.