example.sh: make symlinks to style, icons and index by default
1 files changed, 6 insertions(+), 0 deletions(-) | |||
---|---|---|---|
M | example.sh | +6 | -0 |
1@@ -34,4 +34,10 @@ find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
2 stagit "${reposdir}${d}"
3
4 printf " done\n"
5+
6+ # symlinks
7+ ln -sf log.html index.html
8+ ln -sf ../style.css style.css
9+ ln -sf ../logo.png logo.png
10+ ln -sf ../favicon.png favicon.png
11 done