summaryrefslogtreecommitdiff
path: root/taler-build/update_stage.sh
blob: a1b9120d91c2e46897f7c142c57f3b2bf16146d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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/stage.taler.net
fetch
git submodule update --init
make