diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 18:32:00 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 18:32:00 +0200 |
commit | a4365ba31618050830a109e67290011fd981d069 (patch) | |
tree | 90828c9dbb1ee5e33f58b3d30efeb4b8dc0fa851 /bash-completion | |
parent | Comment out things in xmonad that has stopped working (diff) | |
download | dotfiles-a4365ba31618050830a109e67290011fd981d069.tar.gz dotfiles-a4365ba31618050830a109e67290011fd981d069.tar.bz2 dotfiles-a4365ba31618050830a109e67290011fd981d069.tar.xz |
Fix bugs
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/bash-aliases | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bash-completion/bash-aliases b/bash-completion/bash-aliases index 92aab19..00f8341 100644 --- a/bash-completion/bash-aliases +++ b/bash-completion/bash-aliases @@ -10,7 +10,7 @@ recomplete () { if test -f /usr/share/bash-completion/bash_completion && ! shopt -oq posix; then . /usr/share/bash-completion/bash_completion fi - if test -d ~/.local/bash_completion.d ] && ! shopt -oq posix; then + if test -d ~/.local/bash_completion.d && ! shopt -oq posix; then for __completionscript in ~/.local/bash_completion.d/*; do if test -r "${__completionscript}"; then . "${__completionscript}" @@ -20,8 +20,8 @@ recomplete () { fi if test -d ~/.local/share/bash_completion.d && ! shopt -oq posix; then for __completionscript in ~/.local/share/bash_completion.d/*; do - if [ -r "${__completionscript}" ]; then - . "${__completionscript}" + if test -r "${__completionscript}"; then + . "${__completionscript}" fi done unset __completionscript |