Skip to content

Commit 8a1c1df

Browse files
committed
[#3731] Format meson.build
1 parent 516c87a commit 8a1c1df

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

fuzz/meson.build

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ foreach i : [
1515
'fuzz_unix_socket_kea_dhcp6',
1616
'fuzz_config_kea_dhcp4/doc-examples',
1717
'fuzz_config_kea_dhcp6/doc-examples',
18-
1918
]
20-
command = run_command(
21-
GRABBER,
22-
f'input/@i@',
23-
'*',
24-
check: true,
25-
)
19+
command = run_command(GRABBER, f'input/@i@', '*', check: true)
2620
foreach j : command.stdout().strip().split('\n')
2721
# configure_file doesn't work with path segments in the output, so let
2822
# us simulate it with commands.
29-
run_command([f'mkdir', '-p', f'@TOP_BUILD_DIR@/fuzz/input/@i@'], check: true)
30-
run_command([f'cp', f'input/@i@/@j@', f'@TOP_BUILD_DIR@/fuzz/input/@i@/@j@'], check: true)
23+
run_command(
24+
['mkdir', '-p', f'@TOP_BUILD_DIR@/fuzz/input/@i@'],
25+
check: true,
26+
)
27+
run_command(
28+
['cp', f'input/@i@/@j@', f'@TOP_BUILD_DIR@/fuzz/input/@i@/@j@'],
29+
check: true,
30+
)
3131
endforeach
3232
endforeach
3333

0 commit comments

Comments
 (0)