Skip to content

Commit 3e14440

Browse files
authored
Update index.md
1 parent 6e736ae commit 3e14440

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,20 @@ See the [automatically generated catalog](scripts/index.md) of all the MLC scrip
1313
```mermaid
1414
graph TD
1515
A[env = incoming env + env_from_meta] --> B[Script]
16-
B --> C[env - env(local_env_keys)]
16+
B --> C[env - local_env_keys]
1717
C --> D[Dependencies]
1818
D --> E[Preprocess]
19-
E --> F[env - env(local_env_keys)]
19+
E --> F[env - local_env_keys]
2020
F --> G[Prehook dependencies]
2121
G --> H[Run script]
22-
H --> I[env - env(clean_env_keys_post_deps)]
22+
H --> I[env - clean_env_keys_post_deps]
2323
I --> J[Posthook dependencies]
2424
J --> K[Postprocess]
25-
K --> L[env - env(clean_env_keys_post_deps)]
25+
K --> L[env - clean_env_keys_post_deps]
2626
L --> M[Post dependencies]
27-
M --> N[env(new_env_keys) if new_env_keys<br>else incoming_env - env]
27+
M --> N[new_env_keys or incoming_env - env]
2828
N --> O[Script return]
29+
2930
```
3031

3132
* When an MLC script is invoked (either by tags or by unique ID), its `meta.yaml` is processed first which will check for any `deps` script and if there are, then they are executed in order.

0 commit comments

Comments
 (0)