From: Junio C Hamano Date: Fri, 9 Sep 2005 08:17:54 +0000 (-0700) Subject: Ignore datestamp-only changes when installing webdoc. X-Git-Tag: v0.99.7~104 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=922fb98e1c1cfed0c5075256f328fd8d01587c61;p=git.git Ignore datestamp-only changes when installing webdoc. Signed-off-by: Junio C Hamano --- diff --git a/Documentation/install-webdoc.sh b/Documentation/install-webdoc.sh index e51a40ee..d593ab98 100755 --- a/Documentation/install-webdoc.sh +++ b/Documentation/install-webdoc.sh @@ -4,7 +4,7 @@ T="$1" for h in *.html howto/*.txt howto/*.html do - diff -u "$T/$h" "$h" || { + diff -u -I'Last updated [0-9][0-9]-[A-Z][a-z][a-z]-' "$T/$h" "$h" || { echo >&2 "# install $h $T/$h" rm -f "$T/$h" mkdir -p `dirname "$T/$h"`