2018-04-19 21:11:09 +00:00
|
|
|
#!/usr/bin/env nix-shell
|
2024-02-26 20:33:20 +00:00
|
|
|
#!nix-shell -i bash -p bundix zlib libyaml
|
2018-04-19 21:11:09 +00:00
|
|
|
|
2024-06-26 16:02:38 +00:00
|
|
|
set -o errexit -o nounset
|
2018-04-19 21:11:09 +00:00
|
|
|
|
2024-06-26 16:14:32 +00:00
|
|
|
script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
|
2018-04-19 21:11:09 +00:00
|
|
|
|
|
|
|
for directory in "basic" "full"; do
|
2024-06-26 16:14:32 +00:00
|
|
|
pushd "$script_dir/$directory"
|
2018-04-19 21:11:09 +00:00
|
|
|
rm -f Gemfile.lock gemset.nix
|
2022-11-23 12:18:53 +00:00
|
|
|
BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
|
2018-04-19 21:11:09 +00:00
|
|
|
rm -rf .bundle vendor
|
|
|
|
popd
|
|
|
|
done
|