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
This commit is contained in:
Martin Capitanio 2023-05-21 14:09:34 +02:00 committed by Hermet Park
parent 4838c25fa4
commit 2a56c43c84

View file

@ -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)