ci: Remove redundant || exit

We already use `set -ex`, adding an explicit exit on command fail is
redundant.
This commit is contained in:
Tobin C. Harding 2022-12-24 09:47:29 +11:00
parent 006fe3c223
commit 96e8a080d1
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -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