summaryrefslogtreecommitdiff
path: root/taler-build/update_docs.sh
blob: 40c1fb15ef952b0175988d3c32a969f7e86448e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -eu

for i in merchant/doc merchant-frontend-examples; do
  cd /var/www/$i
  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"

  make || (texi2html manual.texi; texi2pdf manual.texi)
done