Commit ce2f5500 authored by Steven Fackler's avatar Steven Fackler
Browse files

Delete old script

parent c2164a48
Loading
Loading
Loading
Loading

build_docs.sh

deleted100755 → 0
+0 −10
Original line number Diff line number Diff line
#!/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