summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cad3a20)
raw | patch | inline | side by side (parent: cad3a20)
author | Junio C Hamano <gitster@pobox.com> | |
Tue, 7 Aug 2007 04:15:15 +0000 (21:15 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 7 Aug 2007 04:16:21 +0000 (21:16 -0700) |
The basic idea is from Mark Levedahl. I do not use GZ=1 nor
quick-install-doc myself (there obviously is a chicken-and-egg
issue with quick-install-doc for me).
Signed-off-by: Junio C Hamano <gitster@pobox.com>
quick-install-doc myself (there obviously is a chicken-and-egg
issue with quick-install-doc for me).
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/install-doc-quick.sh | patch | blob | history |
index 07d227f093f9d183381f08316b3cc515de8e6ce7..5433cf8cedc466d2da56386ec4b5f4f9f462ef5b 100755 (executable)
git checkout-index -a -f --prefix="$mandir"/
if test -n "$GZ"; then
- cd "$mandir"
- for i in `git ls-tree -r --name-only $head`
- do
- gzip < $i > $i.gz && rm $i
- done
+ git ls-tree -r --name-only $head |
+ xargs printf "$mandir/%s\n" |
+ xargs gzip -f
fi
rm -f "$GIT_INDEX_FILE"