7 lines
171 B
Batchfile
7 lines
171 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
rem Start local Wails development environment.
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\dev.ps1" %*
|
|
pause
|