mirror of https://github.com/zulip/zulip.git
test-documentation: Fail on any nonzero exit code.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
0ca9c260ae
commit
4c60e994c8
|
@ -58,7 +58,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
result=$?
|
result=$?
|
||||||
if [ "$result" = 1 ]; then
|
if [ "$result" -ne 0 ]; then
|
||||||
color_message 91 "Failed!"
|
color_message 91 "Failed!"
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue