Skip to content

Commit

Permalink
meson: add check to run_command
Browse files Browse the repository at this point in the history
Because we really should be checking that it succeeds, and because not
setting it is deprecated.
  • Loading branch information
dcbaker committed Aug 1, 2022
1 parent c04097e commit dd779ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/meson.build
Expand Up @@ -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

0 comments on commit dd779ad

Please sign in to comment.