mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-22 11:18:08 -06:00
14 lines
387 B
Bash
14 lines
387 B
Bash
#!/bin/bash
|
|
mkdir ../src/documentation
|
|
for i in `ls ../documentation`
|
|
do
|
|
if test -d ../documentation/$i
|
|
then
|
|
mkdir ../src/documentation/$i
|
|
pandoc -s ../documentation/$i/changes.md -o ../src/documentation/$i/changes.html
|
|
pandoc -s ../documentation/$i/manual.md -o ../src/documentation/$i/manual.html
|
|
cp ../documentation/license.txt ../src/documentation/license.txt
|
|
fi
|
|
done
|
|
exit
|