11 lines
263 B
Bash
Executable file
11 lines
263 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
nix-shell -p ruby_3_3 imagemagick pkg-config --pure --command "
|
|
export JEKYLL_ENV=production
|
|
echo 'Installing bundles'
|
|
bundle config set path 'vendor/cache'
|
|
bundle install --gemfile=Gemfile
|
|
bundle update --bundler
|
|
bundle update
|
|
"
|