Otherwise URLs in the wild that point at older release notes will become
dangling.
Signed-off-by: Junio C Hamano <redacted>
---
Jonathan Nieder [off-list ref] writes:
quoted
this would invalidate old URLs like
http://www.kernel.org/pub/software/scm/git/docs/RelNotes-1.7.2.3.txt
, no?
Perhaps grandfathering the old URLs with a patch like this may be
sufficient.
Documentation/install-webdoc.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation/install-webdoc.sh b/Documentation/install-webdoc.sh
index e5c1cbe..76d69a9 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"
--
1.7.3.rc0.183.gb0497