6 lines
148 B
Batchfile
6 lines
148 B
Batchfile
@echo off
|
|
setlocal
|
|
set "SCRIPT_DIR=%~dp0"
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%test_deploy.ps1" %*
|
|
exit /b %ERRORLEVEL%
|