list

scripts

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

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

cf17815

Author: blmayer (bleemayer@gmail.com)

Date: Fri Oct 6 15:07:20 2023 -0300

Parent: 7c7bd3f

Added space on command

Diff

post-receive

diff --git a/post-receive b/post-receive
index 275886d..7c1747a 100755
--- a/post-receive
+++ b/post-receive
@@ -262,7 +262,7 @@ creategomod() {
 	[ -d "$OUT/@latest" ] || mkdir -p "$OUT/@latest"
 	[ -d "$OUT/@v/$1" ] || mkdir -p "$OUT/@v/$1"
 
-	$(cd "$TMP"; zip "$OUT/@v/$1" -r *)
+	$(cd "$TMP"; zip "$OUT/@v/$1" -r * )
 	cp "$OUT/@v/$1.zip" "$OUT/@latest/"
 	rm -rf "$TMP"
 }