Skip to content

Commit

Permalink
build(tauri-win): disable winfw.dll in nsis (#1941)
Browse files Browse the repository at this point in the history
  • Loading branch information
doums authored Jan 16, 2025
1 parent dbfef8c commit e1934f3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nym-vpn-app/src-tauri/bundle/windows/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,10 @@ Section Install
File "..\..\..\..\nym-vpnd.exe"

; Copy libraries
File "..\..\..\..\winfw.dll"
File "..\..\..\..\libwg.dll"
File "..\..\..\..\wintun.dll"
; TODO restore when winfw build is fixed
; File "..\..\..\..\winfw.dll"

; Copy resources
{{#each resources_dirs}}
Expand Down Expand Up @@ -687,8 +688,9 @@ Section Uninstall
Delete "$INSTDIR\nym-vpnd.exe"

Delete "$INSTDIR\libwg.dll"
Delete "$INSTDIR\winfw.dll"
Delete "$INSTDIR\wintun.dll"
; TODO restore when winfw build is fixed
; Delete "$INSTDIR\winfw.dll"

; Delete resources
{{#each resources}}
Expand Down

0 comments on commit e1934f3

Please sign in to comment.