You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#! /bin/sh
|
|
|
|
bundle init
|
|
bundle config set --local path 'vendor/bundle'
|
|
bundle add jekyll
|
|
bundle exec jekyll new --force --skip-bundle .
|
|
mkdir _source
|
|
mv *.markdown *.html _posts _source
|
|
echo "source: _source" >> _config.yml
|