SetMsvcEnvs sets MSVC environment configuration string (Windows only).
(msvcEnvs string)
| 48 | |
| 49 | // SetMsvcEnvs sets MSVC environment configuration string (Windows only). |
| 50 | func (e *executor) SetMsvcEnvs(msvcEnvs string) *executor { |
| 51 | e.msvcEnvs = msvcEnvs |
| 52 | return e |
| 53 | } |
| 54 | |
| 55 | // SetWorkDir sets the working directory for command execution. |
| 56 | func (e *executor) SetWorkDir(workDir string) *executor { |
no outgoing calls