diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-05-04 21:49:06 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-05-04 21:49:57 +0200 |
commit | 0ba71246a7445204a457602806f9cc80c0cbe354 (patch) | |
tree | 8c4c0641243ae492381efdb5c67313b30eb5dc7f | |
parent | acd8c47a0c8bda41d1bf57a6bbc9b37b83065f6c (diff) | |
download | luaotfload-0ba71246a7445204a457602806f9cc80c0cbe354.tar.gz |
[tool] include release tag in --versionv2.7-fix-2
This info is indeed valuable on top of the commit hash, thanks to @jfbu
who complained about its absence.
-rwxr-xr-x | src/luaotfload-tool.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/luaotfload-tool.lua b/src/luaotfload-tool.lua index 547796e..35dc9b3 100755 --- a/src/luaotfload-tool.lua +++ b/src/luaotfload-tool.lua @@ -348,6 +348,9 @@ local version_msg = function ( ) out (about, luaotfload.self) out ("%s version: %q", luaotfload.self, version) + if notes.description then + out ("Luaotfload: %q", notes.description) + end out ("Revision: %q", notes.revision) out ("Lua interpreter: %s; version %q", runtime[1], runtime[2]) --[[out ("Luatex SVN revision: %d", info.luatex_svn)]] --> SVN r5624 |