git-preview @ main

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

unveil: cleanup code in main.go
Thu, 22 Dec 2022
1 files changed, 3 insertions(+), 2 deletions(-)
M main.go

@@ -20,8 +20,9 @@ if err != nil {

log.Fatal(err) } - if err = UnveilPaths([]string{c.Dirs.Static, c.Repo.ScanPath, c.Dirs.Templates}, "r"); err != nil { - log.Fatal(err) + err = UnveilPaths([]string{c.Dirs.Static, c.Repo.ScanPath, c.Dirs.Templates}, "r") + if err != nil { + log.Fatalf("unveil: %w", err) }

… preview truncated