Drop verbose flag

This commit is contained in:
Steven Fackler 2015-12-18 22:20:57 -08:00
parent 2a66e858ba
commit 4f0a7e24d1
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@ export CARGO_TARGET_DIR=target
for toml in $(find . -maxdepth 2 -name "Cargo.toml"); do for toml in $(find . -maxdepth 2 -name "Cargo.toml"); do
cargo update --manifest-path $toml || true cargo update --manifest-path $toml || true
features=$(cargo read-manifest --manifest-path $toml | jq -r '.features|keys|join(" ")') 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 done