@echo off REM Sing Detect - build a distributable Windows app (MSI installer). REM Output: src-tauri\target\release\bundle\msi\ setlocal set "PATH=%USERPROFILE%\.cargo\bin;%PATH%" if not exist "node_modules" call npm install echo Building release bundle (this takes a few minutes the first time)... call npm run tauri build echo. echo Done. Find the installer under: echo src-tauri\target\release\bundle\msi\ pause