github.com/Cloud-Foundations/Dominator@v0.3.4/cmd/installer/stub.go (about)

     1  // +build !linux
     2  
     3  package main
     4  
     5  import (
     6  	"os"
     7  )
     8  
     9  func main() {
    10  	os.Stderr.Write([]byte("Not available on this OS\n"))
    11  	os.Exit(1)
    12  }