From 78d61026454f862b8e2e6d23360c46053769bc21 Mon Sep 17 00:00:00 2001 From: Anish Bhatt Date: Wed, 9 Apr 2014 19:03:06 -0700 Subject: [PATCH] Update gitapply.sh Turn off whitespace warnings --- debian/tools/gitapply.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/tools/gitapply.sh b/debian/tools/gitapply.sh index c3f22dfd..35a76897 100755 --- a/debian/tools/gitapply.sh +++ b/debian/tools/gitapply.sh @@ -78,7 +78,7 @@ done # Redirect to git apply if available if [ "$nogit" -eq 0 ] && command -v git >/dev/null 2>&1; then - exec git apply "$@" + exec git apply --whitespace=nowarn "$@" exit 1 fi