summary refs log tree commit diff
path: root/pkgs/development/mobile/cocoapods/update
blob: 8215d1abe4fdbe434c553e88afa2408700dab0da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/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