diff options
author | Norbert Preining <preining@logic.at> | 2008-07-22 18:18:12 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-07-22 18:18:12 +0000 |
commit | 65b6e275506073ee8b156711e2cc4c5e54a1e188 (patch) | |
tree | 2bac69fe7517ae041731595515565219c6760009 | |
parent | 1494318814a12b8800d33bfc2e027b5e9c1e6771 (diff) |
after update on win32 create a desktop shortcut
git-svn-id: svn://tug.org/texlive/trunk@9704 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 5a7105635de..b67caddd678 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -711,6 +711,15 @@ EOF print UPDATER "rem del /s /q temp\n"; print UPDATER "rem rmdir temp\n"; close (UPDATER); + # create a desktop shortcut + add_desktop_shortcut( + $localtlpdb->root, + 'TeX Live Updater Final Step', + '', # $vars{'TEXDIR'}.'/tlpkg/doc/notes.ico', # the icon + $localtlpdb->root.'/tlpkg/installer/updater.bat', + '', # no args + '', # any non-null value to hide command-prompt + ); tlwarn("UPDATER has been created, please execute tlpkg\\installer\\updater.bat\n"); } return(\%ret); |