mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-13 19:50:25 +03:00
46ebd0af8a
Currently user won't have completion of `zpool` command until they trigger completion of `zfs` first. This patch adds a link to `zfs`, thus user can use both to initialize the completion. Fixes: #16320 Signed-off-by: Shengqi Chen <harry-chen@outlook.com> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Rob Norris <rob.norris@klarasystems.com> Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de>
10 lines
285 B
Makefile
10 lines
285 B
Makefile
nodist_bashcompletion_DATA = %D%/zfs %D%/zpool
|
|
COMPLETION_FILES = %D%/zfs
|
|
SUBSTFILES += $(COMPLETION_FILES)
|
|
|
|
SHELLCHECKSCRIPTS += $(COMPLETION_FILES)
|
|
$(call SHELLCHECK_OPTS,$(COMPLETION_FILES)): SHELLCHECK_SHELL = bash
|
|
|
|
%D%/zpool: %D%/zfs
|
|
$(LN_S) zfs $@
|