mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
12 lines
289 B
Bash
12 lines
289 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#! nix-shell -i bash -p bash bundix bundler
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||
|
|
||
|
rm -f Gemfile.lock Gemfile.lock
|
||
|
bundler lock
|
||
|
BUNDLE_GEMFILE=Gemfile bundler lock --lockfile=Gemfile.lock
|
||
|
bundix --gemfile=Gemfile --lockfile=Gemfile.lock --gemset=gemset.nix
|