Hello, I have an issue with the pulumi bash comple...
# general
b
Hello, I have an issue with the pulumi bash completion on linux, I used the
gen-completion bash
command to generate the completion file and I have the following in my
.bashrc
file:
Copy code
BASH_COMPLETION_DIR="$HOME/.bash_completion.d"
if [ -d "$BASH_COMPLETION_DIR" ]; then
    for completion in $BASH_COMPLETION_DIR/*; do
		source "$completion"
    done
fi