Signed-off-by: Rik Nijessen <riknijessen@gmail.com> Upstream-commit: 1ec2eac50db2c98e00a488664625a22bf3757066 Component: engine
9 lines
159 B
Go
9 lines
159 B
Go
// +build windows
|
|
|
|
package system
|
|
|
|
func Lstat(path string) (*Stat_t, error) {
|
|
// should not be called on cli code path
|
|
return nil, ErrNotSupportedPlatform
|
|
}
|