7 lines
201 B
Batchfile
7 lines
201 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
rem Build release package. Use: package.bat -Installer for NSIS installer.
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\build.ps1" %*
|
|
pause
|