Skip to content

Commit

Permalink
Fix development docs to use correct bin path for ruby gems
Browse files Browse the repository at this point in the history
Seems like there was a typo in the `PATH` declaration for installed
ruby gem binaries. This causes installed gems to be found.

This commit fixes it by reusing the `GEM_HOME` var so `PATH`
will use `.gems` (not `gems`) as well.
  • Loading branch information
0x-r4bbit authored and jakubgs committed Dec 8, 2021
1 parent 4334148 commit a39e718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ gem install jekyll bundler
It might be necessary to specify installation destination for your Gems:
```
export GEM_HOME="$HOME/.gems"
export PATH="$HOME/gems/bin:$PATH"
export PATH="$GEM_HOME/bin:$PATH"
```
For instructions on other systems use [these docs](https://jekyllrb.com/docs/installation/).

Expand Down

0 comments on commit a39e718

Please sign in to comment.