From dd1e5411f7f9b2a498989edc15e853b2308e6faf Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Mon, 27 Nov 2017 11:50:14 +0100 Subject: adding '--lint' option to invalidate.sh --- taler-build/invalidate.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'taler-build/invalidate.sh') diff --git a/taler-build/invalidate.sh b/taler-build/invalidate.sh index 3ea43f1..46a36b5 100755 --- a/taler-build/invalidate.sh +++ b/taler-build/invalidate.sh @@ -1,8 +1,13 @@ #!/bin/bash set -eu +components="deployment exchange merchant bank gnurl donations blog landing gnunet libmicrohttpd survey" -for component in deployment exchange merchant bank gnurl donations blog landing gnunet libmicrohttpd survey ; do +if test ${1:-notgiven} = "--lint"; then +components="bank donations survey blog" +fi + +for component in $components ; do cd $HOME/$component git fetch if git status -sb | grep behind; then -- cgit v1.2.3