summaryrefslogtreecommitdiff
path: root/taler-docbuild/update_doc_backoffice.sh
blob: dc5d7730bdd862bcd3443cceb1ae9c46b0cdd107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

set -eu

fetch () {
  git clean -fdx
  git fetch
  # reset to updated upstream branch, but only if we're tracking a branch
  branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo head)
  git reset --hard "$branch"
}

cd $HOME/backoffice/doc/
fetch
make
mkdir -p $HOME/build/backoffice/pdf
mkdir -p $HOME/build/backoffice/html
cp manual.pdf $HOME/build/backoffice/pdf/
cp manual.html $HOME/build/backoffice/html/
cp *.css $HOME/build/backoffice/html/