2005-08-25 09:28:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
T="$1"
|
|
|
|
|
2007-11-25 08:48:04 +01:00
|
|
|
for h in \
|
|
|
|
*.txt *.html \
|
|
|
|
howto/*.txt howto/*.html \
|
|
|
|
technical/*.txt technical/*.html \
|
2010-09-07 02:29:57 +02:00
|
|
|
RelNotes/*.txt *.css
|
2005-08-25 09:28:18 +02:00
|
|
|
do
|
2007-11-25 08:48:04 +01:00
|
|
|
if test ! -f "$h"
|
|
|
|
then
|
|
|
|
: did not match
|
|
|
|
elif test -f "$T/$h" &&
|
2010-09-01 18:25:17 +02:00
|
|
|
$DIFF -u -I'^Last updated ' "$T/$h" "$h"
|
2006-05-18 12:57:04 +02:00
|
|
|
then
|
|
|
|
:; # up to date
|
|
|
|
else
|
2005-08-25 09:28:18 +02:00
|
|
|
echo >&2 "# install $h $T/$h"
|
|
|
|
rm -f "$T/$h"
|
|
|
|
mkdir -p `dirname "$T/$h"`
|
|
|
|
cp "$h" "$T/$h"
|
2006-05-18 12:57:04 +02:00
|
|
|
fi
|
2005-08-25 09:28:18 +02:00
|
|
|
done
|
|
|
|
strip_leading=`echo "$T/" | sed -e 's|.|.|g'`
|
2007-11-25 08:48:04 +01:00
|
|
|
for th in \
|
|
|
|
"$T"/*.html "$T"/*.txt \
|
|
|
|
"$T"/howto/*.txt "$T"/howto/*.html \
|
|
|
|
"$T"/technical/*.txt "$T"/technical/*.html
|
2005-08-25 09:28:18 +02:00
|
|
|
do
|
|
|
|
h=`expr "$th" : "$strip_leading"'\(.*\)'`
|
|
|
|
case "$h" in
|
2010-09-10 01:17:59 +02:00
|
|
|
RelNotes-*.txt | index.html) continue ;;
|
2005-08-25 09:28:18 +02:00
|
|
|
esac
|
|
|
|
test -f "$h" && continue
|
|
|
|
echo >&2 "# rm -f $th"
|
|
|
|
rm -f "$th"
|
|
|
|
done
|
|
|
|
ln -sf git.html "$T/index.html"
|