aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorAndrei Alexeyev <0x416b617269@gmail.com>2018-05-04 06:19:46 +0300
committerAndrei Alexeyev <0x416b617269@gmail.com>2018-05-22 04:45:31 +0300
commitd72f9a3e0fd0434029b0c933886cfdecb5ee465e (patch)
tree7ded1e07d13338df9d98e69e20de11efdda0440e /docs/markdown
parentb3f74b9c3af08061de31c3177da6231289c08e84 (diff)
downloadmeson-d72f9a3e0fd0434029b0c933886cfdecb5ee465e.zip
meson-d72f9a3e0fd0434029b0c933886cfdecb5ee465e.tar.gz
meson-d72f9a3e0fd0434029b0c933886cfdecb5ee465e.tar.bz2
Add 'check' kwarg for run_command
Closes #3516
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/snippets/run_command_check.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/markdown/snippets/run_command_check.md b/docs/markdown/snippets/run_command_check.md
new file mode 100644
index 0000000..018456b
--- /dev/null
+++ b/docs/markdown/snippets/run_command_check.md
@@ -0,0 +1,4 @@
+## New 'check' keyword argument for the run_command function
+
+If `check` is `true`, then the configuration will fail if the command returns a
+non-zero exit status. The default value is `false` for compatibility reasons.