diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-09-10 11:54:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-10 11:54:58 -0700 |
commit | 5b45c55545dc492ff9cbe19d17c275b96b198eed (patch) | |
tree | f3013fe3ade798382ffa935c4e05f6b0e7e57e39 /Documentation/install-webdoc.sh | |
parent | 6070bac82a1e9c61d86f8ad2fb282ebb62d1c5d6 (diff) | |
parent | 3a4e6c727f939414c96a01c097c8e9f2feb201d6 (diff) |
Merge branch 'np/relnotes-in-subdir'
* np/relnotes-in-subdir:
install-webdoc: keep installed RelNotes-*.txt
Documentation: move RelNotes into a directory of their own
Diffstat (limited to 'Documentation/install-webdoc.sh')
-rwxr-xr-x | Documentation/install-webdoc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/install-webdoc.sh b/Documentation/install-webdoc.sh index 37e67d1a14..76d69a907b 100755 --- a/Documentation/install-webdoc.sh +++ b/Documentation/install-webdoc.sh @@ -6,7 +6,7 @@ for h in \ *.txt *.html \ howto/*.txt howto/*.html \ technical/*.txt technical/*.html \ - RelNotes-*.txt *.css + RelNotes/*.txt *.css do if test ! -f "$h" then @@ -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" |