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.lorimer.id.au/gitweb.git/diff_plain/922fb98e1c1cfed0c5075256f328fd8d01587c61?ds=inline;hp=--cc Ignore datestamp-only changes when installing webdoc. Signed-off-by: Junio C Hamano --- 922fb98e1c1cfed0c5075256f328fd8d01587c61 diff --git a/Documentation/install-webdoc.sh b/Documentation/install-webdoc.sh index e51a40eecd..d593ab988b 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"`