mirror of
https://github.com/ohwgiles/laminar.git
synced 2024-10-27 20:34:20 +00:00
UserManual: add a note that env vars are not shell-expanded
resolves #120
This commit is contained in:
parent
559a6480ee
commit
cd64be2cea
@ -521,7 +521,7 @@ DUT_IP=192.168.3.2
|
|||||||
FOO=bar
|
FOO=bar
|
||||||
```
|
```
|
||||||
|
|
||||||
This environment will then be available the run script of jobs associated with this context.
|
This environment will then be available the run script of jobs associated with this context. Note that these definitions are not expanded by a shell, so `FOO="bar"` would result in a variable `FOO` whose contents *include* double-quotes.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -680,6 +680,8 @@ Laminar will also export variables in the form `KEY=VALUE` found in these files:
|
|||||||
- `contexts/$CONTEXT.env`
|
- `contexts/$CONTEXT.env`
|
||||||
- `jobs/$JOB.env`
|
- `jobs/$JOB.env`
|
||||||
|
|
||||||
|
Note that definitions in these files are not expanded by a shell, so `FOO="bar"` would result in a variable `FOO` whose contents *include* double-quotes.
|
||||||
|
|
||||||
Finally, variables supplied on the command-line call to `laminarc queue`, `laminarc start` or `laminarc run` will be available. See [parameterized runs](#Parameterized-runs)
|
Finally, variables supplied on the command-line call to `laminarc queue`, `laminarc start` or `laminarc run` will be available. See [parameterized runs](#Parameterized-runs)
|
||||||
|
|
||||||
## laminarc
|
## laminarc
|
||||||
|
Loading…
Reference in New Issue
Block a user