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

set -eu
components="deployment exchange merchant bank gnurl donations blog landing gnunet libmicrohttpd survey backoffice"

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-build/$component-stamp
  fi
done