interpreter property
The script interpreter to use.
Required. Possible string values are:
- "INTERPRETER_UNSPECIFIED" : Defaults to NONE.
- "NONE" : If an interpreter is not specified, the source is executed directly. This execution, without an interpreter, only succeeds for executables and scripts that have shebang lines.
- "SHELL" : Indicates that the script runs with
/bin/sh
on Linux andcmd.exe
on Windows. - "POWERSHELL" : Indicates that the script runs with PowerShell.
Implementation
core.String? interpreter;