ci: Remove redundant || exit
We already use `set -ex`, adding an explicit exit on command fail is redundant.
This commit is contained in:
parent
006fe3c223
commit
96e8a080d1
|
@ -81,7 +81,7 @@ cargo run --example taproot-psbt --features=rand-std,bitcoinconsensus
|
|||
|
||||
# Build the docs if told to (this only works with the nightly toolchain)
|
||||
if [ "$DO_DOCS" = true ]; then
|
||||
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly rustdoc --all-features -- -D rustdoc::broken-intra-doc-links -D warnings || exit 1
|
||||
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly rustdoc --all-features -- -D rustdoc::broken-intra-doc-links -D warnings
|
||||
fi
|
||||
|
||||
# Fuzz if told to
|
||||
|
|
Loading…
Reference in New Issue