bash completion: Restore completion of available packages for 'guix build'.
Fixes a regression introduced in
9b0a755f64
whereby 'guix build TAB' would
not suggest any completion.
* etc/completion/bash/guix (_guix_complete): Arrange so 'guix build TAB'
completes available packages.
This commit is contained in:
parent
adde15186d
commit
7082873ea2
|
@ -1,5 +1,5 @@
|
||||||
# GNU Guix --- Functional package management for GNU
|
# GNU Guix --- Functional package management for GNU
|
||||||
# Copyright © 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
# Copyright © 2015, 2016, 2017, 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
#
|
#
|
||||||
# This file is part of GNU Guix.
|
# This file is part of GNU Guix.
|
||||||
#
|
#
|
||||||
|
@ -172,6 +172,8 @@ _guix_complete ()
|
||||||
if _guix_is_dash_L
|
if _guix_is_dash_L
|
||||||
then
|
then
|
||||||
_guix_complete_file
|
_guix_complete_file
|
||||||
|
else
|
||||||
|
_guix_complete_available_package "$word_at_point"
|
||||||
fi
|
fi
|
||||||
elif _guix_is_command "download"
|
elif _guix_is_command "download"
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue