engine: resources: exec: Fix typo

Typo in description of cwd field fixed.
This commit is contained in:
Adam Sigal
2020-01-11 21:30:30 +11:00
committed by James Shubin
parent 8f60f42be3
commit 84b5b60d49

View File

@@ -54,7 +54,7 @@ type ExecRes struct {
// only be used when a Shell is *not* specified. The advantage of this // only be used when a Shell is *not* specified. The advantage of this
// is that you don't have to worry about escape characters. // is that you don't have to worry about escape characters.
Args []string `yaml:"args"` Args []string `yaml:"args"`
// Cmd is the dir to run the command in. If empty, then this will use // Cwd is the dir to run the command in. If empty, then this will use
// the working directory of the calling process. (This process is mgmt, // the working directory of the calling process. (This process is mgmt,
// not the process being run here.) // not the process being run here.)
Cwd string `yaml:"cwd"` Cwd string `yaml:"cwd"`