From 66164c480d35ae333b8fb00f03194b92f3fc8289 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Wed, 14 May 2014 15:19:24 +0200 Subject: [PATCH] contrib/rpm: update build_clean.sh script to work with older version of git Signed-off-by: Thomas Haller --- contrib/fedora/rpm/build_clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fedora/rpm/build_clean.sh b/contrib/fedora/rpm/build_clean.sh index 36d7ad1b09..89505e8946 100755 --- a/contrib/fedora/rpm/build_clean.sh +++ b/contrib/fedora/rpm/build_clean.sh @@ -24,7 +24,7 @@ cd "$GITDIR" || die "could not change to $GITDIR" # check for a clean working directory. # We ignore the /contrib directory, because this is where the automation # scripts and the build results will be. -if [[ "x$(git clean -ndx -e /contrib )" != x ]]; then +if [[ "x$(git clean -ndx | grep '^Would remove contrib/.*$' -v)" != x ]]; then die "The working copy is not clean. Refuse to run. Try git clean -e /contrib -dx -n" fi