Update gitapply.sh

Turn off whitespace warnings
This commit is contained in:
Anish Bhatt 2014-04-09 19:03:06 -07:00
parent b862f600f5
commit 78d6102645

View File

@ -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