mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-10 16:58:04 -05:00
Resolves: https://github.com/flatpak/flatpak/issues/2241 Signed-off-by: Simon McVittie <smcv@collabora.com>
16 lines
385 B
Meson
16 lines
385 B
Meson
# Copyright 2022 Collabora Ltd.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
install_data(
|
|
'flatpak',
|
|
install_dir : get_option('datadir') / 'bash-completion' / 'completions',
|
|
)
|
|
install_data(
|
|
'_flatpak',
|
|
install_dir : get_option('datadir') / 'zsh' / 'site-functions',
|
|
)
|
|
install_data(
|
|
'flatpak.fish',
|
|
install_dir : get_option('datadir') / 'fish' / 'vendor_completions.d',
|
|
)
|