14 lines
222 B
Batchfile
14 lines
222 B
Batchfile
|
@echo off
|
||
|
|
||
|
echo running UBL tests
|
||
|
docker run --rm --pull always -it -v %CD%:/src phelger/vefa-validator build -x -t -p ubl /src
|
||
|
if errorlevel 1 goto error
|
||
|
|
||
|
goto end
|
||
|
|
||
|
:error
|
||
|
echo An error occurred in validation
|
||
|
pause
|
||
|
|
||
|
:end
|