Merge refs/heads/portable from http://www.cs.berkeley.edu/~ejr/gits/git.git
[git.git] / Documentation / install-webdoc.sh
1 #!/bin/sh
2
3 T="$1"
4
5 for h in *.html howto/*.txt
6 do
7         diff -u "$T/$h" "$h" || {
8                 echo >&2 "# install $h $T/$h"
9                 rm -f "$T/$h"
10                 mkdir -p `dirname "$T/$h"`
11                 cp "$h" "$T/$h"
12         }
13 done
14 strip_leading=`echo "$T/" | sed -e 's|.|.|g'`
15 for th in "$T"/*.html "$T"/howto/*.txt
16 do
17         h=`expr "$th" : "$strip_leading"'\(.*\)'`
18         case "$h" in
19         index.html) continue ;;
20         esac
21         test -f "$h" && continue
22         echo >&2 "# rm -f $th"
23         rm -f "$th"
24 done
25 ln -sf git.html "$T/index.html"