14 lines
154 B
Go
14 lines
154 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Fprintln(os.Stderr, "remlink-engineer: Windows is required")
|
|
os.Exit(1)
|
|
}
|