diff --git a/roles/bash/files/profile b/roles/bash/files/profile index 619cb62..9ae1886 100644 --- a/roles/bash/files/profile +++ b/roles/bash/files/profile @@ -368,6 +368,7 @@ stty -ixon # disable ctrl-s and ctrl-q _update_colors "${BACKGROUND:-dark}" # Enable available completion helpers +# shellcheck disable=SC1090 # no need to shellcheck bash completion files while read -r d; do [ -d "$d" ] && for f in "$d"/*; do [ -f "$f" ] && . "$f"; done; done <