1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

LP-290 nsis: silence uninstaller when deleting cache directories

hopefully unistaller will run faster...
This commit is contained in:
Philippe Renon 2016-07-11 23:09:21 +02:00
parent 49bb804b00
commit 758c4d2bf9

View File

@ -329,7 +329,10 @@ SectionEnd
Section "un.Maps cache" UnSecCache
; Remove local app data (maps cache, ...)
SetShellVarContext current
; disable status updates as there is potentially a lot of cached files...
SetDetailsPrint none
RMDir /r /rebootok "$LOCALAPPDATA\${ORG_BIG_NAME}\${GCS_BIG_NAME}"
SetDetailsPrint both
; Only remove if no other versions have data here
RMDir /rebootok "$LOCALAPPDATA\${ORG_BIG_NAME}"
SectionEnd