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

set -eu

for component in deployment exchange merchant bank gnurl donations blog landing gnunet libmicrohttpd survey ; do
  cd $HOME/$component
  git fetch
  if git status -sb | grep behind; then
    echo "invalidating $component"
    rm -f $HOME/deployment/taler-build/$component-stamp
  fi
done