Merge pull request #202511 from raboof/jekyll-fix-updating

jekyll: force ruby platform when updating dependencies
This commit is contained in:
Mario Rodas 2022-11-23 08:15:17 -05:00 committed by GitHub
commit bc47cd4770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ readonly BASEDIR="$(dirname $(readlink -f $0))"
for directory in "basic" "full"; do
pushd "$BASEDIR/$directory"
rm -f Gemfile.lock gemset.nix
bundix --magic
BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
rm -rf .bundle vendor
popd
done