Skip to content

Commit

Permalink
Add a script to build merged docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 4, 2015
1 parent 6f59718 commit 5b29da6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build_docs.sh
@@ -0,0 +1,12 @@
#!/bin/bash

set -e

mkdir doc

for crate in $(echo phf_shared phf_macros phf phf_codegen phf_generator); do
rm -r $crate/target
mkdir -p $crate/target
(cd $crate/target && ln -s ../../doc)
(cd $crate && cargo doc --no-deps)
done

0 comments on commit 5b29da6

Please sign in to comment.