Skip to content

Commit

Permalink
fix typo (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
kzvi authored Jun 14, 2024
1 parent 065c607 commit 7802d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/docs/core-concepts/recipes.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Takes an object with options for spawning the process:
- `outputScaffold`: The path `$BRIOCHE_OUTPUT` initially doesn't exist when the process starts, and must be written to before the process exits in order to succeed. Set `outputScaffold` to any recipe to initialize this output path with some sort of contents. This is useful to run a command like `sed -i` that modifies its output contents in place, or to run a command like `gcc` to let it output directly into a `bin/` directory
- `unsafe`: Opt-in to certain unsafe features (see ["Unsafe processes"](/docs/how-it-works/sandboxing#unsafe-options))

The values for `commands`, `args`, and `env` can be passed as plain strings or using **process templates**, created with `std.tpl`. Recipes can be interpolated in the template, which will automatically bake the recipe before the process starts, then will resolve to a path containing the recipe's output artifact.
The values for `command`, `args`, and `env` can be passed as plain strings or using **process templates**, created with `std.tpl`. Recipes can be interpolated in the template, which will automatically bake the recipe before the process starts, then will resolve to a path containing the recipe's output artifact.

See ["Sandboxing"](/docs/how-it-works/sandboxing) for more details about how processes are run and what they have access to.

Expand Down

0 comments on commit 7802d62

Please sign in to comment.