aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2021-05-10 13:28:35 +1200
committerTom Ryder <tom@sanctum.geek.nz>2021-05-10 13:28:35 +1200
commit6f91b2705e848416c5735539a4af383e6aceaf0a (patch)
treefffcffbedc3638b76d054ee3fc77ab41616c87d0 /bash
parentRemove <strong> tag from HTML timestamp prefix (diff)
downloaddotfiles-6f91b2705e848416c5735539a4af383e6aceaf0a.tar.gz
dotfiles-6f91b2705e848416c5735539a4af383e6aceaf0a.zip
Make corrections for ShellCheck v0.7.2
Diffstat (limited to 'bash')
-rw-r--r--bash/bash_completion.d/path.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/bash/bash_completion.d/path.bash b/bash/bash_completion.d/path.bash
index 9224506a..9234f132 100644
--- a/bash/bash_completion.d/path.bash
+++ b/bash/bash_completion.d/path.bash
@@ -62,6 +62,7 @@ _path() {
fi
# Break PATH into parts
+ declare -a paths
IFS=: read -a paths -d '' -r \
< <(printf '%s\0' "$PATH")