Skip to content

Commit 6a81131

Browse files
authored
Merge pull request #69553 from compnerd/compnerd/launcher
utils: add a helper to launch build.ps1
2 parents 0969d1e + 93b20aa commit 6a81131

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

utils/build.cmd

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@echo off
2+
setlocal
3+
if "%1"=="/?" (
4+
powershell.exe -Command "& Get-Help -Detailed .\build.ps1"
5+
exit /b
6+
)
7+
8+
powershell.exe -ExecutionPolicy RemoteSigned -File "%~dp0\build.ps1" %*
9+
endlocal

0 commit comments

Comments
 (0)