forked from quentin/quentin.dufour.io
8 lines
157 B
Text
8 lines
157 B
Text
|
#!/bin/bash
|
||
|
|
||
|
rm -f static # prevent collision with jekyll
|
||
|
bundle config set path 'vendor/bundle'
|
||
|
bundle install
|
||
|
bundle exec jekyll build
|
||
|
ln -sf _site static
|