• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3set -e
4
5if [ -n "$GH_TOKEN" ]; then
6    cd projects/doxygen/html
7    git init
8    git config user.name "Kirk Shoop"
9    git config user.email "kirk.shoop@microsoft.com"
10    git add *
11    git commit -m "doxygen generated site"
12    git push --force "https://${GH_TOKEN}@github.com/Reactive-Extensions/RxCpp.git" master:gh-pages
13fi
14