diff options
| author | Lenny Komow <lenny@lunarg.com> | 2016-08-30 16:43:39 -0600 |
|---|---|---|
| committer | Lenny Komow <lenny@lunarg.com> | 2016-08-30 16:43:39 -0600 |
| commit | ce18a73434f60913bc11a87d02485b57b5526a3c (patch) | |
| tree | b27c1d6e18e403ebfaa17697eefd5c78d96c0120 /windowsRuntimeInstaller | |
| parent | a4356e1fb0a69ef353381561c4b244d3cc0a66e2 (diff) | |
| download | usermoji-ce18a73434f60913bc11a87d02485b57b5526a3c.tar.xz | |
winsdk: Fix uninstall log not clearing old copies
Diffstat (limited to 'windowsRuntimeInstaller')
| -rw-r--r-- | windowsRuntimeInstaller/InstallerRT.nsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/windowsRuntimeInstaller/InstallerRT.nsi b/windowsRuntimeInstaller/InstallerRT.nsi index c84170b5..7984d7d8 100644 --- a/windowsRuntimeInstaller/InstallerRT.nsi +++ b/windowsRuntimeInstaller/InstallerRT.nsi @@ -635,6 +635,9 @@ Section "uninstall" StrCpy $1 85 ${Endif} Call un.CheckForError + IfFileExists "$TEMP\VulkanRT\configure_rt_uninstall.log" 0 endif_log_exists + Delete "$TEMP\VulkanRT\configure_rt_uninstall.log" + endif_log_exists: Rename "$IDir\configure_rt.log" "$TEMP\VulkanRT\configure_rt_uninstall.log" # If Ref Count is zero, remove install dir |
