pos 0.1.1

Reads GNSS/IMU position and accuracy files.
Documentation
#!/bin/bash

set -o errexit -o nounset

project="pos"
rev=$(git rev-parse --short HEAD)

cargo doc
cd target/doc
echo "<meta http-equiv=refresh content=0;url=${project}/index.html>" > index.html

rm -rf .git
git init

git remote add upstream "git@github.com:gadomski/pos-rs"
git fetch upstream
git reset upstream/gh-pages

touch .

git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages