13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
rm -rf _site
|
||
|
|
||
|
nix-shell -p ruby_3_3 imagemagick pkg-config --pure --command "
|
||
|
echo 'Installing bundles'
|
||
|
bundle config set path 'vendor/cache'
|
||
|
bundle install --gemfile=Gemfile
|
||
|
|
||
|
echo 'Building site'
|
||
|
bundle exec jekyll serve
|
||
|
"
|