summaryrefslogtreecommitdiffstats
path: root/scripts/mkdocset
blob: c1e9fc34f937051414d29a47b6317e472076b988 (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)

$CARGO doc --all || 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