Options for a shell execution

Fields

@:optionaloptionalshellQuoting:Null<ShellQuotingOptions>

The shell quotes supported by this shell.

@:optionaloptionalshellArgs:Null<Array<String>>

The arguments to be passed to the shell executable used to run the task. Most shells require special arguments to execute a command. For example bash requires the -c argument to execute a command, PowerShell requires -Command and cmd requires both /d and /c.

@:optionaloptionalexecutable:Null<String>

The shell executable.

@:optionaloptionalenv:Null<DynamicAccess<String>>

The additional environment of the executed shell. If omitted the parent process' environment is used. If provided it is merged with the parent process' environment.

@:optionaloptionalcwd:Null<String>

The current working directory of the executed shell. If omitted the tools current workspace root is used.