Creates documentation/changelog.html by taking changelog.md. Uses pandoc.

This commit is contained in:
Manuel Cortez 2016-04-04 03:43:57 -05:00
parent bab325e60e
commit f8310faa6a

View File

@ -1,6 +1,7 @@
#!/bin/bash
# Define paths for a regular use, if there are not paths for python32 or 64, these commands will be taken.
pythonpath32="/C/python27x86"
pandocpath="pandoc.exe"
help () {
echo -e "$0 | usage:"
@ -35,6 +36,16 @@ if [ -d dist/ ];
then
rm -rf dist
fi
if [ -d documentation/ ];
then
rm -rf documentation
fi
mkdir documentation
cp ../changelog.md documentation/changelog.md
cd documentation
$pandocpath -s changelog.md -o changelog.html
rm changelog.md
cd ..
$pythonpath32/python.exe "setup.py" "py2exe" "--quiet"
mv -f dist ../nightly/socializer
rm -rf build