overall result message in all deps build scripts

This commit is contained in:
otavepto 2023-12-27 17:08:38 +02:00
parent 475cbe5da4
commit 9cec2361de
2 changed files with 13 additions and 0 deletions

View File

@ -357,4 +357,11 @@ popd
echo; echo;
echo;
if [[ $last_code = 0 ]]; then
echo "[GG] no failures"
else
echo "[XX] general failure" >&2
fi
exit $last_code

View File

@ -408,6 +408,12 @@ exit /b
exit /b 1
:end_script
echo:
if %last_code% equ 0 (
echo [GG] no failures
) else (
1>&2 echo [XX] general failure
)
popd
endlocal & (
exit /b %last_code%