diff options
Diffstat (limited to 'Master/tlpkg/etc/nsis/updater.nsi')
-rw-r--r-- | Master/tlpkg/etc/nsis/updater.nsi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/tlpkg/etc/nsis/updater.nsi b/Master/tlpkg/etc/nsis/updater.nsi new file mode 100644 index 00000000000..16efa8f381c --- /dev/null +++ b/Master/tlpkg/etc/nsis/updater.nsi @@ -0,0 +1,19 @@ +# set the name of the installer +outfile "hello world.exe" + +Function .onInit + MessageBox MB_YESNO "This will update your TeX Live installation. Do you wish to continue?" IDYES gogogo + Abort + gogogo: +FunctionEnd + + +# create a default section. +section + +# create a popup box, with an OK button and the text "Hello world!" +messageBox MB_OK "Hello world!" + +#untgz::extract "-d" "$INSTDIR\temp" "$TEMP\${DICT_FILENAME}" + +sectionEnd |