Creates documentation/changelog.html by taking changelog.md. Uses pandoc.
This commit is contained in:
parent
bab325e60e
commit
f8310faa6a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user