meson: add check to run_command
ci/woodpecker/pr/woodpecker Pipeline was successful Details

Because we really should be checking that it succeeds, and because not
setting it is deprecated.
pull/240/head
Dylan Baker 2022-07-29 10:53:32 -07:00
parent c04097e491
commit dd779ad9f8
1 changed files with 1 additions and 1 deletions

View File

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