Skip to content

Commit e6642b0

Browse files
committed
break windows compilation
users are installing the CLI on windows, which in turn breaks WSL. this should prevent them from installing it in the first place
1 parent 6b31503 commit e6642b0

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

main.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build darwin || linux
2+
13
package main
24

35
import (

main_windows.go

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//go:build windows
2+
3+
package main
4+
5+
func main() {
6+
windows_is_not_supported_please_use_WSL()
7+
}

0 commit comments

Comments
 (0)