summaryrefslogtreecommitdiff
path: root/example.sh
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-01-08 21:27:22 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-01-08 21:27:22 +0100
commit8983c802c1ddf205a1a0d38debf51d3c18b7ab4a (patch)
treebf8ae46c2e4b2ddd64e386663c253435523bd7a9 /example.sh
parent934980659a7c1d7ccebec69a65eef2bf96a6c7a2 (diff)
example.sh: fix go to appropriate dir
Diffstat (limited to 'example.sh')
-rw-r--r--example.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/example.sh b/example.sh
index 385283d..e167f03 100644
--- a/example.sh
+++ b/example.sh
@@ -34,10 +34,11 @@ done | sort -n -k 1 | cut -f 2- -d ' ' | xargs stagit-index | \
sed 's@<td>Last commit</td>@<td><a href="index-time.html">Last commit</a></td>@g' | \
sed 's@<td>Name</td>@<td><a href="index.html">Name</a></td>@g' > "${curdir}/index-time.html"
+cd "${reposdir}"
+
# make files per repo.
find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
d=$(basename "${dir}")
-
printf "%s..." "${d}"
cd "${curdir}"