Delete old script

This commit is contained in:
Steven Fackler 2017-07-30 12:12:34 -07:00
parent c2164a4864
commit ce2f5500ca
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
#!/bin/bash
set -e
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 --no-deps --manifest-path $toml --features "$features"
done