elvish/pkg/eval/builtin_fn_cmd_windows.go

14 lines
233 B
Go
Raw Normal View History

package eval
import "errors"
var errNotSupportedOnWindows = errors.New("not supported on Windows")
func execFn(...interface{}) error {
return errNotSupportedOnWindows
}
func fg(...int) error {
return errNotSupportedOnWindows
}