jekyll: force ruby platform when updating dependencies

Fixes #202506 where an updated jekyll couldn't be used because
the platform-specific and ruby version of the nokogiri dependency
got confused. Inspiration for this fix from
https://github.com/nix-community/bundix/issues/88

+1 -1
+1 -1
pkgs/applications/misc/jekyll/update.sh
··· 9 9 for directory in "basic" "full"; do 10 10 pushd "$BASEDIR/$directory" 11 11 rm -f Gemfile.lock gemset.nix 12 - bundix --magic 12 + BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic 13 13 rm -rf .bundle vendor 14 14 popd 15 15 done