From 54d0e43914ea461486fae74241582944d17b9fd0 Mon Sep 17 00:00:00 2001 From: Harald Albers Date: Sun, 3 Jan 2016 17:38:06 +0100 Subject: [PATCH] Fix "installing bash completion" instructions The scripts are copied/linked into a _directory_, not a file. The two directories are the default locations for bash completion extensions. Signed-off-by: Harald Albers --- docs/install-machine.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install-machine.md b/docs/install-machine.md index 3af806f1d8..1e8d59df64 100644 --- a/docs/install-machine.md +++ b/docs/install-machine.md @@ -62,7 +62,7 @@ as: active machine To install the scripts, copy or link them into your `/etc/bash_completion.d` or -`/usr/local/etc/bash_completion.d` file. To enable the `docker-machine` shell +`/usr/local/etc/bash_completion.d` directory. To enable the `docker-machine` shell prompt, add `$(__docker-machine-ps1)` to your `PS1` setting in `~/.bashrc`. PS1='[\u@\h \W$(__docker-machine-ps1)]\$ '