This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knotserver / sandbox / sandboxexec / exec_linux.go
197 B 11 lines
1//go:build linux 2 3package sandboxexec 4 5import ( 6 "tangled.org/core/knotserver/sandbox" 7) 8 9func applyAndExec(repoPaths, gitArgs []string) error { 10 return sandbox.ApplyLandlock(repoPaths, gitArgs) 11}