From 3a4e6c727f939414c96a01c097c8e9f2feb201d6 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 9 Sep 2010 16:17:59 -0700 Subject: [PATCH] install-webdoc: keep installed RelNotes-*.txt Otherwise URLs in the wild that point at older release notes will become dangling. 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 e5c1cbea0c..76d69a907b 100755 --- a/Documentation/install-webdoc.sh +++ b/Documentation/install-webdoc.sh @@ -30,7 +30,7 @@ for th in \ do h=`expr "$th" : "$strip_leading"'\(.*\)'` case "$h" in - index.html) continue ;; + RelNotes-*.txt | index.html) continue ;; esac test -f "$h" && continue echo >&2 "# rm -f $th"