Removing the "no buildable source files" error on non-linux machines
parent
8fe16fdf94
commit
e99a378a85
|
|
@ -0,0 +1,17 @@
|
|||
// +build !linux
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println(
|
||||
"this driver was built on a non-linux machine, so it is " +
|
||||
"unavailable. Please re-build minikube on a linux machine to enable " +
|
||||
"it.",
|
||||
)
|
||||
os.Exit(1)
|
||||
}
|
||||
Loading…
Reference in New Issue