summaryrefslogtreecommitdiff
path: root/example.sh
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-12-26 21:05:55 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-12-26 21:05:55 +0100
commit81dd454368b40eabf62fede213626d45512150a2 (patch)
tree7532265d577223de13a2f396bffa7839008f7377 /example.sh
parent8c58750b636edc4ee36aff62d7c126f99b803dbb (diff)
rename urmoms to stagit, improve documentation
Diffstat (limited to 'example.sh')
-rw-r--r--example.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/example.sh b/example.sh
index 3998fe8..a9c0fe0 100644
--- a/example.sh
+++ b/example.sh
@@ -19,7 +19,7 @@ curdir=$(pwd)
# make index.
cd "${reposdir}"
-find . -maxdepth 1 -type d | grep -v "^.$" | sort | xargs urmoms-index > "${curdir}/index.html"
+find . -maxdepth 1 -type d | grep -v "^.$" | sort | xargs stagit-index > "${curdir}/index.html"
# make files per repo.
find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
@@ -31,7 +31,7 @@ find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
test -d "${d}" || mkdir -p "${d}"
cd "${d}"
- urmoms "${reposdir}${d}"
+ stagit "${reposdir}${d}"
printf " done\n"
done