mirror of
https://github.com/Anil-matcha/Open-Generative-AI.git
synced 2026-05-07 01:17:18 +00:00
7 lines
300 B
NSIS
7 lines
300 B
NSIS
!macro customInit
|
|
; Override default installation directory to be directly in LocalAppData
|
|
StrCpy $INSTDIR "$LOCALAPPDATA\Open Generative AI"
|
|
|
|
; Forcefully kill the app if it's running to prevent installation failure
|
|
nsExec::ExecToStack 'taskkill /F /IM "Open Generative AI.exe"'
|
|
!macroend
|