aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-12-18 22:20:57 -0800
committerSteven Fackler <[email protected]>2015-12-18 22:20:57 -0800
commit4f0a7e24d16dcdc7587293c35b227b9bd7963e2e (patch)
treef7218c965735e0af89f2f9a149937123e9dea73c
parentAdd a script to build docs with all features enabled (diff)
downloadrust-openssl-4f0a7e24d16dcdc7587293c35b227b9bd7963e2e.tar.xz
rust-openssl-4f0a7e24d16dcdc7587293c35b227b9bd7963e2e.zip
Drop verbose flag
-rwxr-xr-xbuild_docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_docs.sh b/build_docs.sh
index 3cfe1b79..c41fd675 100755
--- a/build_docs.sh
+++ b/build_docs.sh
@@ -6,5 +6,5 @@ export CARGO_TARGET_DIR=target
for toml in $(find . -maxdepth 2 -name "Cargo.toml"); do
cargo update --manifest-path $toml || true
features=$(cargo read-manifest --manifest-path $toml | jq -r '.features|keys|join(" ")')
- cargo doc --verbose --no-deps --manifest-path $toml --features "$features"
+ cargo doc --no-deps --manifest-path $toml --features "$features"
done