From 008dd4789c3b2826b5d3b809b71ea30f55d92b0e Mon Sep 17 00:00:00 2001 From: Zack Darland <153697534+CodeChonk@users.noreply.github.com> Date: Tue, 30 Apr 2024 20:39:19 -0500 Subject: [PATCH] Update README.md Added a step to fix bundler issues. Don't know if is specific to arch based distros. not my solution, all credit goes to https://felipec.wordpress.com/2022/08/25/fixing-ruby-gems-installation/ --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index b9b217a..8308faa 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ With ruby installed it is as easy as running the following commands in a termina ```bash gem install bundler jekyll +export GEM_HOME=$(ruby -e 'puts Gem.user_dir') bundle exec jekyll serve ```