Repo containing scripts to be used with dovel, and git hooks that powers our web interface.
Author: blmayer (bleemayer@gmail.com)
Date: Mon Oct 2 15:03:39 2023 -0300
Parent: 991ef89
Removed go script
diff --git a/create-go-mod b/create-go-mod deleted file mode 100755 index a7ea6a9..0000000 --- a/create-go-mod +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# First argument should be the version, e.g. v0.1.0 -# for debugging -# set -ex -echo "updating go module" - -OUT="$HOME/www/dovel.email/$REPO" - -# go mod -[ -d "$OUT/@latest" ] || mkdir -p "$OUT/@latest" -[ -d "$OUT/@v/$1" ] || mkdir -p "$OUT/@v/$1" - -find tree/* -print | sed "s:tree/:dovel.email/$REPO@v$1/" | zip -@ > "$OUT/@v/$1.zip" -cp "$OUT/$1.zip" "$OUT/@latest/"