d32f0ff079
hashicorp/hcl library added some better validation for error and illegal characters. The diff is primarily improved error reporting. The parser.go change includes a case where illegal characters were silently dropped, but now get reported as invalid characters.
12 lines
175 B
Go
12 lines
175 B
Go
// +build !linux,!darwin,!freebsd,!dragonfly,!openbsd,!solaris
|
|
|
|
package pty
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func open() (pty, tty *os.File, err error) {
|
|
return nil, nil, ErrUnsupported
|
|
}
|