19 lines
402 B
Batchfile
19 lines
402 B
Batchfile
@echo off
|
|
echo Building Windows targets (NSIS installer and Portable)...
|
|
|
|
echo Running npm install...
|
|
call npm install
|
|
|
|
echo Running electron:build script...
|
|
call npm run electron:build
|
|
|
|
if %errorlevel% neq 0 (
|
|
echo Build failed!
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
echo Windows build completed successfully!
|
|
echo Output files are in the dist_electron directory.
|
|
|
|
echo Press any key to exit...
|
|
pause > nul |