From ea4a5942d9d1955a4867d06f5889d7fb1fe83848 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 15 Jul 2022 05:42:10 +0530 Subject: [PATCH] meson: Fix warning about check kwarg This place was missed when we fixed this everywhere else. Part-of: --- subprojects/macos-bison-binary/meson.build | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/subprojects/macos-bison-binary/meson.build b/subprojects/macos-bison-binary/meson.build index 7a1680f0a6..860308dd60 100644 --- a/subprojects/macos-bison-binary/meson.build +++ b/subprojects/macos-bison-binary/meson.build @@ -11,11 +11,8 @@ if arch != 'x86_64' arch = 'x86_64' endif -ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash) -if ret.returncode() != 0 - message(ret.stdout()) - error(ret.stderr()) -endif +ret = run_command(py3, files('download-binary.py'), meson.project_version(), arch, tar_hash, + check: true) conf = configuration_data() conf.set('SRCDIR', meson.project_source_root())