8 lines
168 B
Batchfile
8 lines
168 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
echo Running build-installer.ps1 ...
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0build-installer.ps1"
|
|
echo.
|
|
pause
|