1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00
Satori/build.cmd
Viktor Hofer ae6744a5a8
Print help for -? and /? cross-plat (#42396)
* Print help for -? and /? cross-plat
2020-09-24 14:27:24 +02:00

9 lines
205 B
Batchfile

@echo off
setlocal
set _args=%*
if "%~1"=="-?" set _args=-help
if "%~1"=="/?" set _args=-help
powershell -ExecutionPolicy ByPass -NoProfile -Command "& '%~dp0eng\build.ps1'" %_args%
exit /b %ERRORLEVEL%