mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 12:34:19 +00:00
Fix running the uninstaller if the user chose a different path in the installer. Closes #6080.
This commit is contained in:
parent
f3d6ae3433
commit
851fb8d3de
14
dist/windows/installer.nsi
vendored
14
dist/windows/installer.nsi
vendored
@ -1,14 +1,17 @@
|
||||
Section "-hidden"
|
||||
Var uninstallerPath
|
||||
|
||||
Section "-hidden"
|
||||
|
||||
;Search if qBittorrent is already installed.
|
||||
FindFirst $0 $1 "$INSTDIR\uninst.exe"
|
||||
FindFirst $0 $1 "$uninstallerPath\uninst.exe"
|
||||
FindClose $0
|
||||
StrCmp $1 "" done
|
||||
|
||||
;Run the uninstaller of the previous install.
|
||||
DetailPrint $(inst_unist)
|
||||
ExecWait '"$INSTDIR\uninst.exe" /S _?=$INSTDIR'
|
||||
Delete "$INSTDIR\uninst.exe"
|
||||
ExecWait '"$uninstallerPath\uninst.exe" /S _?=$uninstallerPath'
|
||||
Delete "$uninstallerPath\uninst.exe"
|
||||
RMDir "$uninstallerPath"
|
||||
|
||||
done:
|
||||
|
||||
@ -208,6 +211,9 @@ Function .onInit
|
||||
FindClose $0
|
||||
StrCmp $1 "" done
|
||||
|
||||
;Copy old value to var so we can call the correct uninstaller
|
||||
StrCpy $uninstallerPath $INSTDIR
|
||||
|
||||
;Inform the user
|
||||
MessageBox MB_OKCANCEL|MB_ICONINFORMATION $(inst_uninstall_question) /SD IDOK IDOK done
|
||||
Quit
|
||||
|
Loading…
x
Reference in New Issue
Block a user