This commit is contained in:
2026-01-03 02:07:26 +08:00
parent 0dfd14ab5c
commit 73fd44ce9c
6 changed files with 313 additions and 15 deletions

19
scripts/build.bat Normal file
View File

@@ -0,0 +1,19 @@
@echo off
REM GoTunnel Build Script Launcher for Windows
REM This script launches the PowerShell build script
setlocal
set SCRIPT_DIR=%~dp0
REM Check if PowerShell is available
where powershell >nul 2>nul
if %ERRORLEVEL% neq 0 (
echo ERROR: PowerShell is not available
exit /b 1
)
REM Pass all arguments to PowerShell script
powershell -ExecutionPolicy Bypass -File "%SCRIPT_DIR%build.ps1" %*
endlocal