From 2a56c43c8495f05ead82f4fb977f19ffcfbde537 Mon Sep 17 00:00:00 2001 From: Martin Capitanio Date: Sun, 21 May 2023 14:09:34 +0200 Subject: [PATCH] infra: Avoid meson warning. WARNING:: You should add the boolean check kwarg to the run_command call. It currently defaults to false, but it will default to true in future releases of meson. See also: https://github.com/mesonbuild/meson/issues/9300 --- src/examples/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/meson.build b/src/examples/meson.build index bb551843..8c9ff709 100644 --- a/src/examples/meson.build +++ b/src/examples/meson.build @@ -80,4 +80,4 @@ endif execute_all_src = join_paths(meson.source_root(), 'src/examples/all.sh') execute_all_dst = join_paths(meson.build_root(), 'src/examples/all.sh') -run_command('cp', execute_all_src, execute_all_dst) +run_command('cp', execute_all_src, execute_all_dst, check: true)