bug fix with redist deletion
This commit is contained in:
parent
1490d36ce5
commit
71977a605c
1 changed files with 3 additions and 2 deletions
|
@ -45,10 +45,8 @@ Section
|
|||
File "..\COPYING"
|
||||
|
||||
; temporarily create Microsoft Visual Studio redistributable,
|
||||
; call it, and delete it afterwards
|
||||
File "${VS_REDIST_PATH}${VS_REDIST_EXE}"
|
||||
ExecWait '"$INSTDIR\${VS_REDIST_EXE}" /Q'
|
||||
Delete $INSTDIR\${VS_REDIST_EXE}
|
||||
|
||||
; uninstaller
|
||||
WriteUninstaller $INSTDIR\${UNINSTALL_EXE}
|
||||
|
@ -61,6 +59,9 @@ Section
|
|||
CreateShortCut "$SMPROGRAMS\${APP_NAME}\${APP_NAME} server.lnk" "$INSTDIR\${APP_EXE}" "-s"
|
||||
CreateShortCut "$SMPROGRAMS\${APP_NAME}\${UNINSTALL_EXE}.lnk" "$INSTDIR\${UNINSTALL_EXE}"
|
||||
|
||||
; cleanup: remove temporary Microsoft Visual Studio redistributable executable
|
||||
Delete $INSTDIR\${VS_REDIST_EXE}
|
||||
|
||||
SectionEnd
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue