tools/build-release.sh: work around git status bug.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2019-02-22 13:33:37 +10:30
committed by neil saitug
parent 8b74bcb0ad
commit 91fdfbe2f4

View File

@@ -48,7 +48,8 @@ else
TARGETS=" $* "
fi
if [ "$(git status --porcelain -u no)" != "" ] && ! $FORCE_UNCLEAN; then
# `status --porcelain -u no` suppressed modified! Bug reported...
if [ "$(git diff --name-only)" != "" ] && ! $FORCE_UNCLEAN; then
echo "Not a clean git directory" >&2
exit 1
fi