You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2158,7 +2158,7 @@ change their behavior.
2158
2158
|`[confirm(PROMPT)]`<sup>1.23.0</sup> | recipe | Require confirmation prior to executing recipe with a custom prompt. |
2159
2159
|`[default]`<sup>1.43.0</sup> | recipe | Use recipe as module's default recipe. |
2160
2160
|`[doc(DOC)]`<sup>1.27.0</sup> | module, recipe | Set recipe or module's [documentation comment](#documentation-comments) to `DOC`. |
2161
-
|`[env(ENV_VAR, VALUE)]` <sup>1.44</sup> | recipe | Set env vars that apply only to this recipe. |
2161
+
|`[env(ENV_VAR, VALUE)]` <sup>master</sup> | recipe | Set env vars that apply only to this recipe. |
2162
2162
|`[extension(EXT)]`<sup>1.32.0</sup> | recipe | Set shebang recipe script's file extension to `EXT`. `EXT` should include a period if one is desired. |
2163
2163
|`[group(NAME)]`<sup>1.27.0</sup> | module, recipe | Put recipe or module in in [group](#groups)`NAME`. |
2164
2164
|`[linux]`<sup>1.8.0</sup> | recipe | Enable recipe on Linux. |
@@ -2538,7 +2538,7 @@ test $RUST_BACKTRACE="1":
2538
2538
cargo test
2539
2539
```
2540
2540
2541
-
Or you can use the `[env(env_var, value)]` attribute to set environment variables that
2541
+
You can also use the `[env(NAME, VALUE)]` attribute to export environment variables to a specific recipe:
0 commit comments