summaryrefslogtreecommitdiffstats
path: root/scripts/mkdocset
blob: 95cccc9f8e86d0b126d77f2cbf11ee3b455a8c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

# execute from repository root

CARGO=$(which cargo || exit 1)
RSDOCSDASHING=$(which rsdocs-dashing || exit 1)
DASHING=$(which dashing || exit 1)

find lib -name "Cargo.toml" -exec $CARGO doc --manifest-path {} \; || exit 1

ls target/doc | grep imag | while read pkg; do
    $RSDOCSDASHING target/doc/$pkg docset-$pkg
    $DASHING build --config docset-$pkg/dashing.json --source docset-$pkg/build
done