ucg/src/convert/exec_help.txt
Jeremy Wall 2cefcdbd6a REFACTOR: Move the converter help text into files
Use the include_str macro to inline the help text.
2019-04-08 22:18:48 -05:00

16 lines
500 B
Plaintext

Exec conversions expect a tuple with an expected set of keys.
The expected keys are:
- command (string, required)
The command to run in the script.
- env (tuple, optional)
Any environment variables that should be set in the script.
The env tuple is converted using the same rules as the env converter.
- args (tuple, optional
Any command line arguments for the command line.
The arguments are converted using the same rules as the flags converter.
- Functions and Modules are ignored.