Skip to content

Commit

Permalink
fix: add missing information on Environment stdout messages (#11)
Browse files Browse the repository at this point in the history
The blurb on stdout/stderr messages was missing information on the
"openjd_env" and "openjd_unset_env" prefixes. This remedies that.

Signed-off-by: Daniel Neilson <[email protected]>
  • Loading branch information
ddneilson authored Dec 21, 2023
1 parent fc9d872 commit 632666e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions wiki/How-Jobs-Are-Run.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ messages to convey information about the **Action** to the render management sys
`"dohickying the whatsits."`
* `openjd_fail: <message>` where `<message>` is any string. This provides a human-readable message that indicates why
an **Action** has failed.
* `openjd_env: <var>=<value>` where `<var>` is the string name of an environment variable, and `<value>` is a string. This
can only be emitted by the **Action** for entering an **Environment**. It defines the value of an environment variable for
all subsequent **Action**s in the **Session** until the defining **Environment** is exited.
* `openjd_unset_env: <var>` where `<var>` is the string name of an environment variable. This can only be emitted by the
**Action** for entering an **Environment**. This unsets the given environment variable for all subsequent **Action**s
in the **Session** until the **Environment** that emitted it is exited.

## Path Mapping

Expand Down

0 comments on commit 632666e

Please sign in to comment.