git-preview @ main

static git web frontend but with images and html previews + code truncation

unveil: log each call
Thu, 22 Dec 2022
1 files changed, 3 insertions(+), 0 deletions(-)
M unveil.go

@@ -5,13 +5,16 @@ package main

import ( "golang.org/x/sys/unix" + "log" ) func Unveil(path string, perms string) error { + log.Printf("unveil: \"%s\", %s", path, perms) return unix.Unveil(path, perms) }

… preview truncated