10 lines
237 B
Plaintext
10 lines
237 B
Plaintext
|
#!/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
|
||
|
"
|