summary refs log tree commit diff
path: root/pkgs/tools/security/wpscan/update.sh
blob: c30cc62e5296090cefee6b248809867732ec8eae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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

# Otherwise nokogiri will fail to build.
# https://github.com/nix-community/bundix/issues/88
bundler config set --local force_ruby_platform true

bundler lock
BUNDLE_GEMFILE=Gemfile bundler lock --lockfile=Gemfile.lock
bundix --gemfile=Gemfile --lockfile=Gemfile.lock --gemset=gemset.nix