diff options
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; } |