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: I80da3e805ac82a61fff4e91bcc0c043e8ac2b755
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
diff --git a/chip_data/meson.build b/chip_data/meson.build
index d1d34e8..a7d367b 100644
--- a/chip_data/meson.build
+++ b/chip_data/meson.build
@@ -37,7 +37,7 @@
# Get all JSON files in the chip directory. This is a bit of a workaround
# because meson does not allow wildcards.
- json_list = run_command('json_list.sh', source_dir)
+ json_list = run_command('json_list.sh', source_dir, check: true)
in_files = json_list.stdout().strip().split('\n')
custom_target(