mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
Merge pull request #178 from Kaali/lazy-bash
Let bash load completions lazily
This commit is contained in:
commit
3b3ae7ab7d
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ in
|
|||
nullglobStatus=$(shopt -p nullglob)
|
||||
shopt -s nullglob
|
||||
for p in $NIX_PROFILES; do
|
||||
for m in "$p/etc/bash_completion.d/"* "$p/share/bash-completion/completions/"*; do
|
||||
for m in "$p/etc/bash_completion.d/"*; do
|
||||
source $m
|
||||
done
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue