This website requires JavaScript.
Explore
Help
Register
Sign In
go-sylixos
/
elvish
Watch
3
Star
0
Fork
0
You've already forked elvish
mirror of
https://github.com/go-sylixos/elvish.git
synced
2024-12-04 10:57:50 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
7e0b6ee8e6
elvish
/
pkg
/
eval
/
port_unix.go
8 lines
75 B
Go
Raw
Normal View
History
Unescape
Escape
Use the unix build tag. The unix build tag is supported by Go 1.19.
2023-03-03 07:48:01 +08:00
//go:build unix
pkg/eval: Fix EPIPE on Windows. The syscall package exposes an EPIPE on Windows, but it's not what Windows APIs return. The error number 232 is what is semantically EPIPE.
2021-06-18 07:45:25 +08:00
package
eval
import
"syscall"
var
epipe
=
syscall
.
EPIPE
Reference in New Issue
Copy Permalink