example.sh: make symlinks to style, icons and index by default

This commit is contained in:
Hiltjo Posthuma 2016-01-05 21:40:26 +01:00
parent 4f318941d0
commit 289ecda4aa

View file

@ -34,4 +34,10 @@ find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
stagit "${reposdir}${d}"
printf " done\n"
# symlinks
ln -sf log.html index.html
ln -sf ../style.css style.css
ln -sf ../logo.png logo.png
ln -sf ../favicon.png favicon.png
done