From 8f233383cd95a33368cf9b1a9b730da0b66cb24b Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 30 Aug 2022 12:43:41 -0400 Subject: [PATCH] meson: remove useless command that isn't needed The tests/*.sh are executable in the source tree, and don't need to be chmodded after being copied to the build tree. --- tests/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index b331310..39ceeeb 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -19,5 +19,4 @@ tests = [ # yuck foreach test : tests test_file = configure_file(input: test + '.sh', output: test, copy: true) - run_command('chmod', '755', test_file, check : true) endforeach