15 lines
257 B
Go
15 lines
257 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Fprintln(os.Stderr, "Navis GUI (WebView2) is Windows-only.")
|
|
fmt.Fprintln(os.Stderr, "On macOS use the CLI binary: ./Navis connect | install-core | check-update")
|
|
os.Exit(1)
|
|
}
|