Skip to content

Commit 942eb70

Browse files
committed
build: Fix indentation
1 parent 3001e9b commit 942eb70

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

completion/meson.build

+12-6
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,32 @@ else
1414
message('fish not found: using', get_option('prefix') / fishcompletionsdir, 'as a fallback install directory')
1515
endif
1616

17-
custom_target('bash-completion',
17+
custom_target(
18+
'bash-completion',
1819
capture: true,
1920
command: [generate_completions_program, meson.global_source_root() / 'src', 'bash'],
2021
depends: [toolbox_go],
2122
install: true,
2223
install_dir: bashcompletionsdir,
23-
output: 'toolbox')
24+
output: 'toolbox'
25+
)
2426

25-
custom_target('zsh-completion',
27+
custom_target(
28+
'zsh-completion',
2629
capture: true,
2730
command: [generate_completions_program, meson.global_source_root() / 'src', 'zsh'],
2831
depends: [toolbox_go],
2932
install: true,
3033
install_dir: get_option('datadir') / 'zsh' / 'site-functions',
31-
output: '_toolbox')
34+
output: '_toolbox'
35+
)
3236

33-
custom_target('fish-completion',
37+
custom_target(
38+
'fish-completion',
3439
capture: true,
3540
command: [generate_completions_program, meson.global_source_root() / 'src', 'fish'],
3641
depends: [toolbox_go],
3742
install: true,
3843
install_dir: fishcompletionsdir,
39-
output: 'toolbox.fish')
44+
output: 'toolbox.fish'
45+
)

0 commit comments

Comments
 (0)