Skip to content

Commit

Permalink
build: Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
debarshiray committed Sep 12, 2022
1 parent fc1f714 commit 50c3459
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions completion/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ else
message('fish not found: using', get_option('prefix') / fishcompletionsdir, 'as a fallback install directory')
endif

completion_bash = 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')

completion_zsh = 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')

completion_fish = custom_target('fish-completion',
custom_target('fish-completion',
capture: true,
command: [generate_completions_program, meson.global_source_root() / 'src', 'fish'],
depends: [toolbox_go],
Expand Down

0 comments on commit 50c3459

Please sign in to comment.