summaryrefslogtreecommitdiff
path: root/taler-docbuild/update_doc_landing.sh
blob: 71f0f0ee98be4c9cae4f247e7772d41a6e592ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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/docs-landing/
fetch
git submodule update --force --init

# Get the MOs files.
make compile

# Get the translated final HTMLs.
make translate

# No compilation needed so far.
mkdir -p $HOME/build/docs-landing/
cp -t $HOME/build/docs-landing/ *.{css,svg} en/*.html fr/*.html it/*.html es/*.html pt/*.html ru/*.html de/*.html