Introduction
Introduction Statistics Contact Development Disclaimer Help
texample.sh: fix: remove error mode, would stop if a dir was invalid - stagit -…
git clone git://src.adamsgaard.dk/stagit
Log
Files
Refs
README
LICENSE
---
commit 2296f5167cbeb2c57089cde3e4928d55131f5bc9
parent 8983c802c1ddf205a1a0d38debf51d3c18b7ab4a
Author: Hiltjo Posthuma <[email protected]>
Date: Fri, 8 Jan 2016 22:17:54 +0100
example.sh: fix: remove error mode, would stop if a dir was invalid
mkdir -p makes the directory always, so no need to check.
Diffstat:
M example.sh | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
---
diff --git a/example.sh b/example.sh
t@@ -12,8 +12,6 @@
# - mkdir -p htmldir && cd htmldir
# - sh example.sh
-set -e
-
reposdir="/var/www/domains/git.codemadness.nl/home/src"
curdir=$(pwd)
t@@ -34,23 +32,21 @@ done | sort -n -k 1 | cut -f 2- -d ' ' | xargs stagit-inde…
sed 's@<td>Last commit</td>@<td><a href="index-time.html">Last commit<…
sed 's@<td>Name</td>@<td><a href="index.html">Name</a></td>@g' > "${cu…
-cd "${reposdir}"
-
# make files per repo.
+cd "${reposdir}"
find . -maxdepth 1 -type d | grep -v "^.$" | sort | while read -r dir; do
d=$(basename "${dir}")
printf "%s..." "${d}"
- cd "${curdir}"
- test -d "${d}" || mkdir -p "${d}"
- cd "${d}"
+ mkdir -p "${curdir}/${d}"
+ cd "${curdir}/${d}"
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
+
+ printf " done\n"
done
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.