grim/convey

Add LifesFaded to the AUTHORS

2022-03-27, Gary Kramlich
1fe22209312b
Add LifesFaded to the AUTHORS
package script
import (
"errors"
)
var (
ErrFailedToDetermineShell = errors.New("failed to determine which shell to use")
ErrNoCommandsOrFilename = errors.New("a filename or at least one command must be specified")
ErrNotSupportedOnWindows = errors.New("this tasks is not supported on windows")
ErrOnlyFilenameOrCommands = errors.New("only one of filename and commands may be specified")
ErrScriptOutsideOfWorkspace = errors.New("script is outside of the workspace")
)