Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src-tauri/tauri.bundle.windows.nsis.template
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ Section Install
!insertmacro NSIS_HOOK_PREINSTALL
!endif

!insertmacro CheckIfAppIsRunning
!insertmacro CheckIfAppIsRunning "${MAINBINARYNAME}.exe" "${PRODUCTNAME}"

; Copy main executable
File "${MAINBINARYSRCPATH}"
Expand Down Expand Up @@ -750,7 +750,7 @@ Section Uninstall
!insertmacro NSIS_HOOK_PREUNINSTALL
!endif

!insertmacro CheckIfAppIsRunning
!insertmacro CheckIfAppIsRunning "${MAINBINARYNAME}.exe" "${PRODUCTNAME}"

; Delete the app directory and its content from disk
; Copy main executable
Expand Down
Loading