#!/bin/bash set -eu COMPONENTS="auditor deployment exchange merchant bank gnurl donations blog landing gnunet libmicrohttpd survey backoffice twister" for component in $COMPONENTS ; do # Not all the setups have all the repos! if ! test -d $HOME/$component; then continue fi cd $HOME/$component git fetch if git status -sb | grep behind; then echo "invalidating $component" rm -f $HOME/stamps/$component-stamp fi done