Fix development docs to use correct bin path for ruby gems

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.
This commit is contained in:
Pascal Precht
2021-12-08 12:45:54 +01:00
committed by Jakub
parent 43341489eb
commit a39e718a1f
+1 -1
View File
@@ -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/).