unveil: add git executable

This commit is contained in:
Anirudh Oppiliappan 2022-12-22 11:22:47 +05:30
parent 0ed4b29fe0
commit 6e6648e344
No known key found for this signature in database
GPG Key ID: 8A93F96F78C5D4C4
2 changed files with 7 additions and 3 deletions

View File

@ -23,11 +23,16 @@ func main() {
if err := UnveilPaths([]string{
c.Dirs.Static,
c.Repo.ScanPath,
c.Dirs.Templates},
c.Dirs.Templates,
},
"r"); err != nil {
log.Fatalf("unveil: %s", err)
}
if err := Unveil("/usr/local/bin/git", "rx"); err != nil {
log.Fatalf("unveil: %s", err)
}
mux := routes.Handlers(c)
addr := fmt.Sprintf("%s:%d", c.Server.Host, c.Server.Port)
log.Println("starting server on", addr)

View File

@ -20,8 +20,7 @@ func UnveilBlock() error {
func UnveilPaths(paths []string, perms string) error {
for _, path := range paths {
err := Unveil(path, perms)
if err != nil {
if err := Unveil(path, perms); err != nil {
return err
}
}