Select the types of activity you want to include in your feed.
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}