meson: Fix warning about check kwarg

This place was missed when we fixed this everywhere else.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2761>
This commit is contained in:
Nirbheek Chauhan 2022-07-15 05:42:10 +05:30 committed by GStreamer Marge Bot
parent 6bf15124e7
commit 61743ec1ae

View file

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