Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "run 'CMD' [flags]", Short: "Run a task.", RunE: func(cmd *cobra.Command, args []string) error { err := Run(args) if err != nil { cmd.Usage() return err } return err }, DisableFlagParsing: true, }
Cmd represents the run command
View Source
var ErrKeyFmt = errors.New("Arguments passed to --in, --out, --tag and --env must be of the form: KEY=VALUE")
ErrKeyFmt describes an error in input/output/env/tag flag formatting
View Source
var ErrStorageScheme = errors.New("File paths must be prefixed with one of:\n file://\n gs://\n s3://")
ErrStorageScheme describes an error in supported storage URL schemes.
Functions ¶
func DuplicateKeyErr ¶
DuplicateKeyErr returns a new error describing conflicting keys for env. vars., inputs, and outputs.
func ParseString ¶
ParseString calls shellquote.Split(s) and passes those args to Parse().
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.