mirror of
https://github.com/MAKS-IT-COM/uscheduler.git
synced 2026-02-14 06:37:18 +01:00
10 lines
299 B
Batchfile
10 lines
299 B
Batchfile
@echo off
|
|
REM Generate-CoverageBadges.bat - Wrapper for Generate-CoverageBadges.ps1
|
|
REM Runs tests and generates SVG coverage badges for README
|
|
|
|
pushd "%~dp0"
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0Generate-CoverageBadges.ps1" %*
|
|
set EXITCODE=%ERRORLEVEL%
|
|
popd
|
|
exit /b %EXITCODE%
|