From 542fb5403bd5e5d34b97a5be99b2dc47fe06ed88 Mon Sep 17 00:00:00 2001 From: Jonas Holzman Date: Sat, 7 Jun 2025 11:42:43 +0200 Subject: [PATCH] Docs: Fix wrong `exe` parameter name for the `exec` command (#104396) Small documentation issue I ran into while writing a custom job type The exec command takes an `exe` parameter, similar to other commands, but the documentation wrongly indicates the parameter should be `exec`. Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104396 --- .../content/usage/jobs-tasks-commands/commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/project-website/content/usage/jobs-tasks-commands/commands.md b/web/project-website/content/usage/jobs-tasks-commands/commands.md index 366bf3dc..1430b291 100644 --- a/web/project-website/content/usage/jobs-tasks-commands/commands.md +++ b/web/project-website/content/usage/jobs-tasks-commands/commands.md @@ -84,7 +84,7 @@ depending on the platform it runs on. | Parameter | Type | Description | |-----------|------------|------------------------| -| `exec` | `string` | The executable to run. | +| `exe` | `string` | The executable to run. | | `args` | `[]string` | Commandline arguments. | ## Misc: `echo`