Documentation / install-webdoc.shon commit git-cvsserver runs hooks/post-receive (cdf6328)
   1#!/bin/sh
   2
   3T="$1"
   4
   5for h in *.html *.txt howto/*.txt howto/*.html RelNotes-*.txt *.css
   6do
   7        if test -f "$T/$h" &&
   8           diff -u -I'Last updated [0-9][0-9]-[A-Z][a-z][a-z]-' "$T/$h" "$h"
   9        then
  10                :; # up to date
  11        else
  12                echo >&2 "# install $h $T/$h"
  13                rm -f "$T/$h"
  14                mkdir -p `dirname "$T/$h"`
  15                cp "$h" "$T/$h"
  16        fi
  17done
  18strip_leading=`echo "$T/" | sed -e 's|.|.|g'`
  19for th in "$T"/*.html "$T"/*.txt "$T"/howto/*.txt "$T"/howto/*.html
  20do
  21        h=`expr "$th" : "$strip_leading"'\(.*\)'`
  22        case "$h" in
  23        index.html) continue ;;
  24        esac
  25        test -f "$h" && continue
  26        echo >&2 "# rm -f $th"
  27        rm -f "$th"
  28done
  29ln -sf git.html "$T/index.html"