mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
meson: Use echo to list files
No need to invoke ls when we are just interested in file names. Also, the cd to source root makes the output identical to "git ls-files" (relative instead of absolute paths).
This commit is contained in:
@@ -22,7 +22,7 @@ if git.found() and fs.exists(project_source_root / '.git')
|
||||
'ls-files', ':/test/fuzz/*/*',
|
||||
check: true)
|
||||
else
|
||||
out = run_command(sh, '-c', 'ls @0@/test/fuzz/*/*'.format(project_source_root), check: true)
|
||||
out = run_command(sh, '-c', 'cd "@0@"; echo test/fuzz/*/*'.format(project_source_root), check: true)
|
||||
endif
|
||||
|
||||
fuzz_regression_tests = []
|
||||
|
||||
Reference in New Issue
Block a user