; build/installer.nsh ; electron-builder NSIS 커스텀 스크립트. 최소 구성 — 설치 중 크래시 방지를 위해 ; 레지스트리 조회/MessageBox/외부 exec 등은 수행하지 않는다. ; ; VC++ 재배포 패키지는 사용자가 사전 설치하거나, 앱이 실행될 때 에러가 나면 안내. ; 현재는 detail 로그만 남긴다. !macro customInstall DetailPrint "D3RO Voice installer: custom install phase" ${If} ${FileExists} "$INSTDIR\resources\ollama\ollama.exe" DetailPrint "Bundled Ollama detected" ${EndIf} !macroend !macro customUnInstall DetailPrint "D3RO Voice uninstaller: stop Ollama if running" nsExec::Exec 'taskkill /F /IM ollama.exe' Pop $0 !macroend