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

set -eu

components="merchant-frontend-examples merchant exchange backoffice api deployment"

for component in  $components ; do
  cd $HOME/$component
  git fetch
  if git status -sb | grep behind; then
    echo "invalidating $component"
    rm -f $HOME/deployment/taler-docbuild/$component-stamp
  fi
done