You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ra...@apache.org on 2018/08/29 09:07:17 UTC

[incubator-openwhisk] branch master updated: Fix macOS bash update instructions. (#3970)

This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new a0d975d  Fix macOS bash update instructions. (#3970)
a0d975d is described below

commit a0d975d49b0ea7e04768ea60fd3abe3b91c99fbb
Author: Andrew Janke <fl...@apjanke.net>
AuthorDate: Wed Aug 29 05:07:13 2018 -0400

    Fix macOS bash update instructions. (#3970)
---
 docs/cli.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/docs/cli.md b/docs/cli.md
index 04b8f1d..efe77b2 100644
--- a/docs/cli.md
+++ b/docs/cli.md
@@ -59,13 +59,16 @@ To verify your CLI setup, try [creating and running an action](./samples.md).
 ### Configure command completion for Openwhisk CLI
 
 For bash command completion to work, bash 4.1 or newer is required. The most recent Linux distributions should have the correct version of bash but Mac users will most likely have an older version.
+
 Mac users can check their bash version and update it by running the following commands:
 
 ```
 bash --version
-brew install bash-completion
+brew install bash
 ```
 
+This requires [Homebrew](https://brew.sh/) to be installed. The updated bash will be installed in `/usr/local/bin`.
+
 To write the bash command completion to your local directory, run the following command:
 
 ```