From 4f0a7e24d16dcdc7587293c35b227b9bd7963e2e Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Fri, 18 Dec 2015 22:20:57 -0800 Subject: [PATCH] Drop verbose flag --- build_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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