little 0.2.5

Little interpreter designed as fast template backend.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
echo "DOC=$DOC"

if [ "$DOC" != "true" ]; then
    echo "skipping doc export"
    exit;
fi

echo "exporting docs"

export PATH=$HOME/.local/bin:$PATH
cargo doc
echo "<meta http-equiv=refresh content=0;url=${CRATE}/index.html>" > target/doc/index.html
pip install ghp-import --user `whoami`
ghp-import -n target/doc
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages