From 4958cf272fbd384e81323af210eb2c2cab9f4b2c Mon Sep 17 00:00:00 2001 From: c Date: Thu, 1 Jan 2026 20:51:10 -0500 Subject: [PATCH] Fix bash completion source path in documentation (#981) - Corrects the source path for bash completion script when not using bash-completion package. --- docs/how-to.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how-to.md b/docs/how-to.md index 6634cddc..ed415eeb 100644 --- a/docs/how-to.md +++ b/docs/how-to.md @@ -571,7 +571,7 @@ Without bash-completion, you’ll need to source the completion script directly. ```bash mkdir -p ~/.bash_completions container --generate-completion-script bash > ~/.bash_completions/container -source /opt/homebrew/etc/bash_completion.d/container +source ~/.bash_completions/container ``` Furthermore, you can add the following line to `~/.bash_profile` or `~/.bashrc`, in order for every new bash session to have autocompletion ready.