mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
3615988408
This fixes #1195.
14 lines
233 B
Go
14 lines
233 B
Go
package eval
|
|
|
|
import "errors"
|
|
|
|
var errNotSupportedOnWindows = errors.New("not supported on Windows")
|
|
|
|
func execFn(...interface{}) error {
|
|
return errNotSupportedOnWindows
|
|
}
|
|
|
|
func fg(...int) error {
|
|
return errNotSupportedOnWindows
|
|
}
|