diff options
author | Karl Berry <karl@freefriends.org> | 2008-07-04 17:03:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-07-04 17:03:42 +0000 |
commit | 4a538ec380cd2f24d4e13675ce50ff193001436b (patch) | |
tree | 5dc36650f35f4c5f04f83e5058a1cc34268c2a28 /Master/install-tl | |
parent | 0e31c4fdf02057bc2e69a429d8f3a6cc10ceea3a (diff) |
more info in --version output
git-svn-id: svn://tug.org/texlive/trunk@9245 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index af309276759..c5e75d8cd91 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -196,7 +196,11 @@ if (win32()) { } if ($opt_version) { - print "TeX Live Cross Platform Installer, Revision $::installerrevision\n"; + print "TeX Live Cross Platform Installer, revision $::installerrevision\n"; + if (-r "release-texlive.txt") { + # more version info if we can get it. + print `sed -n '1p;\$p' release-texlive.txt`; + } exit 0; } |