mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-21 00:30:00 +02:00
go mod vendor
This commit is contained in:
committed by
Jesse Duffield
parent
2dcc52abd0
commit
8a06b6067e
11
vendor/github.com/creack/pty/pty_unsupported.go
generated
vendored
Normal file
11
vendor/github.com/creack/pty/pty_unsupported.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
|
||||
|
||||
package pty
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func open() (pty, tty *os.File, err error) {
|
||||
return nil, nil, ErrUnsupported
|
||||
}
|
Reference in New Issue
Block a user