mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Wininstaller2: silently uninstall old LyX if not the same minor version
This commit is contained in:
parent
7b41faabae
commit
bd8a9d3ce3
@ -522,6 +522,17 @@ Section -CheckSilent # This section checks if it's a silent install and calls ne
|
|||||||
Call DefaultDesktopFileAssoc
|
Call DefaultDesktopFileAssoc
|
||||||
SectionEnd
|
SectionEnd
|
||||||
|
|
||||||
|
Section -UninstallOld
|
||||||
|
${If} ${FileExists} "$INSTDIR\Uninstall-LyX.exe"
|
||||||
|
${GetFileVersion} "$INSTDIR\Uninstall-LyX.exe" $0
|
||||||
|
StrCpy $0 $0 3 # get only the first 3 chars, e.g. "2.3"
|
||||||
|
${If} $0 != "${VERSION_MAJOR}.${VERSION_MINOR}"
|
||||||
|
ExecWait "$INSTDIR\Uninstall-LyX.exe /S _?=$INSTDIR" # silently uninstall old LyX
|
||||||
|
Delete "$INSTDIR\Uninstall-LyX.exe"
|
||||||
|
${EndIf}
|
||||||
|
${EndIf}
|
||||||
|
SectionEnd
|
||||||
|
|
||||||
Section -OverInstallReg # If over-installing, we need to delete the registry keys written by the previous installment
|
Section -OverInstallReg # If over-installing, we need to delete the registry keys written by the previous installment
|
||||||
Call PrepareShellCTX # Helper function from above
|
Call PrepareShellCTX # Helper function from above
|
||||||
StrCpy $1 0
|
StrCpy $1 0
|
||||||
|
Loading…
Reference in New Issue
Block a user