mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
15 lines
358 B
Bash
Executable File
15 lines
358 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p bundix zlib libyaml
|
|
|
|
set -o errexit -o nounset
|
|
|
|
script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
|
|
|
|
for directory in "basic" "full"; do
|
|
pushd "$script_dir/$directory"
|
|
rm -f Gemfile.lock gemset.nix
|
|
BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
|
|
rm -rf .bundle vendor
|
|
popd
|
|
done
|