meson: fix meson warning
Resolve the following:
```
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 meson 2.0.
```
This commit does as meson recommends, and adds check: true to all
run_command calls, which will be the default.
Change-Id: I9a4852518130d07745ef29bca86cac28efc34ee0
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
diff --git a/meson.build b/meson.build
index 7071a51..dd65030 100644
--- a/meson.build
+++ b/meson.build
@@ -216,7 +216,7 @@
endforeach
concatenate_command += '> ' + meson.project_build_root() + '/' + combined_yaml_file
-run_command('sh', '-c', concatenate_command)
+run_command('sh', '-c', concatenate_command, check: true)
python = find_program('python3')
map_gen_file_loc = meson.project_source_root()