🐛[bugfix] Installer : アンインストール時に追加で生成されたファイルも削除するように変更

This commit is contained in:
misyaguziya
2024-12-30 14:53:56 +09:00
parent 97f06c66f3
commit a21fd5aa96

View File

@@ -858,6 +858,24 @@ Section Uninstall
Delete "$INSTDIR\\{{this}}" Delete "$INSTDIR\\{{this}}"
{{/each}} {{/each}}
; Dlete config.json
Delete "$INSTDIR\config.json"
; Delete process.log
Delete "$INSTDIR\process.log"
; Delete errror.log
Delete "$INSTDIR\error.log"
; Delete update.exe
Delete "$INSTDIR\update.exe"
; Delete log files
RmDir /r "$INSTDIR\logs"
; Delete weights files
RmDir /r "$INSTDIR\weights"
; Delete uninstaller ; Delete uninstaller
Delete "$INSTDIR\uninstall.exe" Delete "$INSTDIR\uninstall.exe"