Skip to content

Commit

Permalink
build: Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
debarshiray committed Oct 17, 2022
1 parent 968420f commit ad39ed7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions completion/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,32 @@ else
message('fish not found: using', get_option('prefix') / fishcompletionsdir, 'as a fallback install directory')
endif

custom_target('bash-completion',
custom_target(
'bash-completion',
capture: true,
command: [generate_completions_program, meson.global_source_root() / 'src', 'bash'],
depends: [toolbox_go],
install: true,
install_dir: bashcompletionsdir,
output: 'toolbox')
output: 'toolbox'
)

custom_target('zsh-completion',
custom_target(
'zsh-completion',
capture: true,
command: [generate_completions_program, meson.global_source_root() / 'src', 'zsh'],
depends: [toolbox_go],
install: true,
install_dir: get_option('datadir') / 'zsh' / 'site-functions',
output: '_toolbox')
output: '_toolbox'
)

custom_target('fish-completion',
custom_target(
'fish-completion',
capture: true,
command: [generate_completions_program, meson.global_source_root() / 'src', 'fish'],
depends: [toolbox_go],
install: true,
install_dir: fishcompletionsdir,
output: 'toolbox.fish')
output: 'toolbox.fish'
)

0 comments on commit ad39ed7

Please sign in to comment.