mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-18 01:36:02 +00:00
11 lines
243 B
Text
Executable file
11 lines
243 B
Text
Executable file
#!/usr/bin/env nix-shell
|
|
#! nix-shell -i bash -p bash ruby bundler bundix
|
|
|
|
BUNDIX_CACHE="$(mktemp -d)"
|
|
|
|
rm -f Gemfile.lock
|
|
bundler package --path "$BUNDIX_CACHE"
|
|
bundix --bundle-pack-path="$BUNDIX_CACHE"
|
|
|
|
rm -rf "$BUNDIX_CACHE"
|
|
rm -rf .bundle
|