From 0a5efecd7d64aeac3e9518979d43d70ed35a8cc2 Mon Sep 17 00:00:00 2001 From: sarabjeets Date: Thu, 5 Mar 2026 09:51:15 +0530 Subject: [PATCH] Bash completions not working Signed-off-by: sarabjeets --- files/image_config/bash/bash.bashrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/files/image_config/bash/bash.bashrc b/files/image_config/bash/bash.bashrc index 96f54776f94..bff8769037a 100644 --- a/files/image_config/bash/bash.bashrc +++ b/files/image_config/bash/bash.bashrc @@ -34,6 +34,10 @@ if ! shopt -oq posix; then . /usr/share/bash-completion/bash_completion elif [ -f /etc/bash_completion ]; then . /etc/bash_completion + elif [ -d /etc/bash_completion.d ]; then + for f in /etc/bash_completion.d/*; do + [ -f "$f" ] && . "$f" + done fi fi