From 922fb98e1c1cfed0c5075256f328fd8d01587c61 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 9 Sep 2005 01:17:54 -0700 Subject: [PATCH] Ignore datestamp-only changes when installing webdoc. Signed-off-by: Junio C Hamano --- Documentation/install-webdoc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"` -- 2.39.2