Skip to content

Commit

Permalink
Fix jekyll-sass-converter problem
Browse files Browse the repository at this point in the history
Deploying on Netlify I got:

```log
sass-embedded-1.58.3-x86_64-linux-musl requires rubygems version >= 3.3.22,
which is incompatible with the current version, 3.0.8
```log

I found the fix here:
<https://answers.netlify.com/t/rubygems-version-outdated-cannot-deploy/83652/4>
  • Loading branch information
luispuerto committed Mar 9, 2023
1 parent bf2bbdf commit a381cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ group :github_pages_plugins do
gem "jekyll-redirect-from"
# gem "jekyll-relative-links" # Not working with Jekyll 4
# gem "jekyll-remote-theme" # I don't use a remote theme
gem "jekyll-sass-converter"
gem "jekyll-sass-converter", "~> 2.0"
gem "jekyll-seo-tag"
gem "jekyll-sitemap"
# gem "jekyll-swiss" # Jekyll Theme. I don't use
Expand Down

0 comments on commit a381cdd

Please sign in to comment.