From 485bfe356bd6a656624858103b01ea60889bda3d Mon Sep 17 00:00:00 2001 From: Froilan Irizarry Date: Sun, 19 Nov 2017 15:44:53 -0500 Subject: [PATCH] Fix incomplete binary path - Added `bin` directory to the mongoapp binary paths in the README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa8032d..cd77210 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,14 @@ If you need to add the mongoDB binaries to your path you can do so by adding the ```bash # Add mongoDB.app binaries to path -PATH="/Applications/MongoDB.app/Contents/Resources/Vendor/mongodb:$PATH" +PATH="/Applications/MongoDB.app/Contents/Resources/Vendor/mongodb/bin:$PATH" ``` Or using the `path_helper` alternative: ```bash sudo mkdir -p /etc/paths.d && -echo /Applications/MongoDB.app/Contents/Resources/Vendor/mongodb | sudo tee /etc/paths.d/mongodbapp +echo /Applications/MongoDB.app/Contents/Resources/Vendor/mongodb/bin | sudo tee /etc/paths.d/mongodbapp ``` ### Similar projects