From f3ee80be20c99ed7d7ceb0fb76fe460eeaf1f25c Mon Sep 17 00:00:00 2001 From: dgw Date: Mon, 18 Mar 2019 15:32:08 -0500 Subject: [PATCH] Don't use Bundler to run Jekyll That causes GemNotFound errors on Netlify, starting a few days ago. It looks like their Bundler isn't looking for dependencies in the very folder WHERE IT INSTALLED THEM. Until/unless Netlify fixes it, we'll just have to do builds this way. --- netlify-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify-build.sh b/netlify-build.sh index 14067ec..b1a17b2 100755 --- a/netlify-build.sh +++ b/netlify-build.sh @@ -14,7 +14,7 @@ echo "Generating module command/config pages" python document_sopel_modules.py --sopel=_sopel echo "Building Jekyll site" -bundler exec jekyll build +jekyll build echo "Installing Sphinx" pip install sphinx