github.1485827954.workers.dev/nektos/act@v0.2.63/pkg/lookpath/error.go (about)

     1  package lookpath
     2  
     3  type Error struct {
     4  	Name string
     5  	Err  error
     6  }
     7  
     8  func (e *Error) Error() string {
     9  	return e.Err.Error()
    10  }