nixpkgs/pkgs/applications/misc/jekyll/update.sh
2024-02-26 21:33:50 +01:00

16 lines
332 B
Bash
Executable File

#!/usr/bin/env nix-shell
#!nix-shell -i bash -p bundix zlib libyaml
set -o errexit
set -o nounset
readonly BASEDIR="$(dirname $(readlink -f $0))"
for directory in "basic" "full"; do
pushd "$BASEDIR/$directory"
rm -f Gemfile.lock gemset.nix
BUNDLE_FORCE_RUBY_PLATFORM=true bundix --magic
rm -rf .bundle vendor
popd
done