[go: up one dir, main page]

log4rs 0.3.0

A highly configurable multi-output logging implementation for the `log` facade
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -o errexit -o nounset

git clone --branch gh-pages "https://$GH_TOKEN@github.com/${TRAVIS_REPO_SLUG}.git" deploy_docs
cd deploy_docs

git config user.name "Steven Fackler"
git config user.email "sfackler@gmail.com"

rm -rf doc
mv ../target/doc .

git add -A .
git commit -m "rebuild pages at ${TRAVIS_COMMIT}"
git push