From dd779ad9f8cb54310be20b7cf5675f359ae418ed Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 29 Jul 2022 10:53:32 -0700 Subject: [PATCH] meson: add check to run_command Because we really should be checking that it succeeds, and because not setting it is deprecated. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index d68096b..b331310 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -19,5 +19,5 @@ tests = [ # yuck foreach test : tests test_file = configure_file(input: test + '.sh', output: test, copy: true) - run_command('chmod', '755', test_file) + run_command('chmod', '755', test_file, check : true) endforeach