diff options
Diffstat (limited to 'docs/markdown/FAQ.md')
-rw-r--r-- | docs/markdown/FAQ.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/FAQ.md b/docs/markdown/FAQ.md index 2a37651..74696f8 100644 --- a/docs/markdown/FAQ.md +++ b/docs/markdown/FAQ.md @@ -103,7 +103,7 @@ Then you need to run this script in your Meson file, convert the output into a string array and use the result in a target. ```meson -c = run_command('grabber.sh') +c = run_command('grabber.sh', check: true) sources = c.stdout().strip().split('\n') e = executable('prog', sources) ``` |