list

scripts

Repo containing scripts to be used with dovel, and git hooks that powers our web interface.

curl https://dovel.email/scripts.tar tar

9703831

Author: blmayer (bleemayer@gmail.com)

Date: Mon Oct 2 21:37:31 2023 -0300

Parent: c295396

Deleted one file

Diff

diff --git a/update-repo-index b/update-repo-index
deleted file mode 100755
index 5eb5c3d..0000000
--- a/update-repo-index
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# for debugging
-# set -ex
-echo "updating git index"
-
-. ./hooks/aux.sh
-
-OUT="$HOME/www/dovel.email/$REPO"
-
-# archives
-echo "creating archives"
-tar -C "$OUT" -cz tree/ --xform="s/tree/$REPO/" > "$OUT.tar.gz"
-echo "creating index.html"
-cat << EOF > "$OUT/index.html"
-	$(pagehead "$REPO")
-	$(pagesummary)
-	<hr>
-	<p>Latest commit: $(git log -n 1 --format="(%h) by %an at %as: %s")</p>
-	<pre>$(cat "$OUT/tree/README"*)</pre>
-</body>
-</html>
-EOF
-