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_other.go
173 B 9 lines
1//go:build !linux 2 3package sandboxexec 4 5import "fmt" 6 7func applyAndExec(repoPaths, gitArgs []string) error { 8 return fmt.Errorf("sandbox-exec is only supported on Linux") 9}