We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017fb55 commit 16ce83fCopy full SHA for 16ce83f
bash_completion
@@ -2558,7 +2558,8 @@ __load_completion()
2558
[[ -d $dir ]] || continue
2559
for compfile in "$cmd" "$cmd.bash" "_$cmd"; do
2560
compfile="$dir/$compfile"
2561
- # Avoid trying to source dirs; https://bugzilla.redhat.com/903540
+ # Avoid trying to source dirs as long as we support bash < 4.3
2562
+ # to avoid an fd leak; https://bugzilla.redhat.com/903540
2563
if [[ -d $compfile ]]; then
2564
# Do not warn with . or .. (especially the former is common)
2565
[[ $compfile == */.?(.) ]] ||
0 commit comments