Select the types of activity you want to include in your feed.
1//go:build !linux 2 3package main 4 5import ( 6 "fmt" 7 "os" 8) 9 10func main() { 11 fmt.Fprintf(os.Stderr, "spindle-microvm-run is only supported on Linux\n") 12 os.Exit(-1) 13}