summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-12-01 17:58:02 +0000
committerMorgan Deters <mdeters@gmail.com>2012-12-01 17:58:02 +0000
commitcca4ff99763b8202314ef8ab1ec6bc868020f195 (patch)
tree82aa3ae8d50f5c9bb99e0815142b0836723be682
parent251841986bb6a68d18350ed76135507b63ef29b6 (diff)
fix cut-release sanity checks
-rwxr-xr-xcontrib/cut-release2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/cut-release b/contrib/cut-release
index ea0308ada..ef51b6edb 100755
--- a/contrib/cut-release
+++ b/contrib/cut-release
@@ -79,7 +79,7 @@ if $dryrun; then
echo "$(basename "$0"): ERROR: In dry-run mode, cannot operate properly with local modifications to \"configure.ac\", sorry" >&2
exit 1
fi
-elif [ -n "$(svn status -q)" ]; then
+elif [ -n "$(svn status -q | grep -v '^M *[0-9]* *NEWS$')" ]; then
echo "$(basename "$0"): ERROR: \"svn status\" indicates there are local modifications; please commit first" >&2
exit 1
fi
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback