Skip to content

Commit

Permalink
Merge pull request #16 from froi/master
Browse files Browse the repository at this point in the history
Fix incomplete binary path
  • Loading branch information
gcollazo authored Nov 19, 2017
2 parents 134eb93 + 485bfe3 commit 025bc03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 025bc03

Please sign in to comment.