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
|
|
|
|
git_work_tree_path=/var/www/mmdc-site
|
|
GIT_WORK_TREE=$git_work_tree_path git checkout -f
|
|
|
|
commitname=`git log -n 1 --pretty=format:%cn`
|
|
commitdate=`git log -n 1 --pretty=format:%cd`
|
|
|
|
# runs script that converts md to website
|
|
python $git_work_tree_path/mmdc_wiki2web.py
|