ShellProcess Module
Types
| Type | Description |
|
The captured result of running an external process. |
Functions and values
| Function or value |
Description
|
Full Usage:
git args workingDir
Parameters:
string list
workingDir : string
Returns: ProcResult
|
Convenience wrapper: `run "git" args workingDir`.
|
Full Usage:
run exe args workingDir
Parameters:
string
args : string list
workingDir : string
Returns: ProcResult
|
Run `exe` with `args` in `workingDir`, capturing stdout, stderr, and the exit code. Arguments are passed as a list (each is quoted as a single argument); no shell interpolation is performed.
|