mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
8 lines
231 B
Bash
Executable file
8 lines
231 B
Bash
Executable file
#! /bin/bash
|
|
git checkout master README.md
|
|
markdown2 README.md > tmp
|
|
cat templates/header.html tmp templates/footer.html > index.html
|
|
rm tmp
|
|
git add index.html
|
|
git commit -m "Updated Readme from master"
|
|
git push -u origin gh-pages
|