blob: 5cb3224d33b36d95604859cc455785029def6ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clean:
-rm -Rf _site/
run: clean
bundle exec jekyll serve --incremental --drafts
publish:
cp _includes/site.min.css assets/site.min.css
git add .
git commit -m "content update"
git push
|