diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-09 16:17:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-09 16:17:59 -0700 |
commit | 3a4e6c727f939414c96a01c097c8e9f2feb201d6 (patch) | |
tree | baf028089dc5694b41311451243f30f6a566a81c /Documentation/install-webdoc.sh | |
parent | 761e742d69296393804e9a942263e86ece369257 (diff) | |
download | git-3a4e6c727f939414c96a01c097c8e9f2feb201d6.tar.gz |
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 <gitster@pobox.com>
Diffstat (limited to 'Documentation/install-webdoc.sh')
-rwxr-xr-x | 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 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" |