forked from mirrors/nixpkgs
d0ebe6b876
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
16 lines
324 B
Bash
Executable file
16 lines
324 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p bundix zlib
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
|
|
readonly BASEDIR="$(dirname $(readlink -f $0))"
|
|
|
|
for directory in "basic" "full"; do
|
|
pushd "$BASEDIR/$directory"
|
|
rm -f Gemfile.lock gemset.nix
|
|
BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
|
|
rm -rf .bundle vendor
|
|
popd
|
|
done
|