diff options
author | Karl Berry <karl@freefriends.org> | 2020-07-19 21:27:08 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-07-19 21:27:08 +0000 |
commit | 9be6d4cf0be6243c0865902d6c3773cc71cd2e84 (patch) | |
tree | c58b1cebb63873431e2feb70ef1d29615c07e2c8 /Master/texmf-dist/scripts | |
parent | d1db3fa487f34051ad216f6261b36f0086a729f2 (diff) |
lwarp (19jul20)
git-svn-id: svn://tug.org/texlive/trunk@55880 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/lwarp/lwarpmk.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/lwarp/lwarpmk.lua b/Master/texmf-dist/scripts/lwarp/lwarpmk.lua index ff6824e14df..fe4396c13ff 100755 --- a/Master/texmf-dist/scripts/lwarp/lwarpmk.lua +++ b/Master/texmf-dist/scripts/lwarp/lwarpmk.lua @@ -2,7 +2,7 @@ -- Copyright 2016-2020 Brian Dunn -printversion = "v0.87" +printversion = "v0.88" requiredconfversion = "2" -- also at *lwarpmk.conf function printhelp () @@ -36,6 +36,7 @@ lwarpmk clean [-p project]: Remove *.aux, *.toc, *.lof/t, *_html.pdf, *_html.html, *_html.sidetoc lwarpmk cleanall [-p project]: Remove auxiliary files, project.pdf, *.html lwarpmk cleanlimages: Removes all images from the "lateximages" directory. +lwarpmk -v: Print the version number. lwarpmk -h: Print this help message. lwarpmk --help: Print this help message. @@ -891,6 +892,12 @@ print ("lwarpmk: Done.") elseif (arg[1] == nil) then printhelp () +-- lwarpmk -v: + +elseif (arg[1] == "-v" ) then +-- The version number has already been printed +-- by the lwarpmk intro. + -- lwarpmk -h or lwarpmk --help : elseif (arg[1] == "-h" ) or (arg[1] == "--help") then |