diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/.bash_completion | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/.bash_completion b/system/.bash_completion index 21daa89..a4b4705 100644 --- a/system/.bash_completion +++ b/system/.bash_completion @@ -1,3 +1,4 @@ -for f in ~/.bash_completion.d/*; do +for f in ~/.bash_completion.d/* $CLEAN_HOME/etc/completion/*; do + [ -f "$f" ] || continue . "$f" done |