8 lines
165 B
Batchfile
8 lines
165 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0scripts\run-ground-virtual-collision-test.ps1" %*
|
|
|
|
if errorlevel 1 exit /b 1
|
|
exit /b 0
|