src.elv.sh@v0.21.0-dev.0.20240515223629-06979efb9a2a/pkg/eval/builtin_fn_cmd_windows.go (about)

     1  package eval
     2  
     3  import "errors"
     4  
     5  var errNotSupportedOnWindows = errors.New("not supported on Windows")
     6  
     7  func execFn(...any) error {
     8  	return errNotSupportedOnWindows
     9  }
    10  
    11  func fg(...int) error {
    12  	return errNotSupportedOnWindows
    13  }