mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-01-12 02:19:31 +08:00
overall result message in all deps build scripts
This commit is contained in:
parent
475cbe5da4
commit
9cec2361de
@ -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
|
||||
|
@ -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%
|
||||
|
Loading…
x
Reference in New Issue
Block a user