This repository has no description
0

Configure Feed

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

core / cmd / spindle-microvm-run / unsupported.go
163 B 13 lines
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}