Commit cd25356e authored by Davis King's avatar Davis King

Fixed bug in makerel script related to the new python examples.

parent 0dd6aad1
...@@ -105,7 +105,6 @@ makedocs () ...@@ -105,7 +105,6 @@ makedocs ()
mv cache.$$/dlib docs/cache/ mv cache.$$/dlib docs/cache/
mv cache.$$/examples docs/cache/ mv cache.$$/examples docs/cache/
mv cache.$$/python_examples docs/cache/ mv cache.$$/python_examples docs/cache/
htmlify_python docs/cache/python_examples/
mv cache.$$/tools docs/cache/ mv cache.$$/tools docs/cache/
rm -rf cache.$$ rm -rf cache.$$
...@@ -145,8 +144,11 @@ makedocs () ...@@ -145,8 +144,11 @@ makedocs ()
cp docs/cache/examples/CMakeLists.txt docs/web/examples cp docs/cache/examples/CMakeLists.txt docs/web/examples
mkdir docs/chm/docs/examples || report_failure mkdir docs/chm/docs/examples || report_failure
cp docs/cache/examples/CMakeLists.txt docs/chm/docs/examples cp docs/cache/examples/CMakeLists.txt docs/chm/docs/examples
cp docs/cache/python_examples/*.py.html docs/chm/docs/ cp docs/cache/python_examples/*.py docs/chm/docs/
cp docs/cache/python_examples/*.py.html docs/web/ cp docs/cache/python_examples/*.py docs/web/
htmlify_python docs/chm/docs/
htmlify_python docs/web/
cp docs/*.gif docs/web cp docs/*.gif docs/web
cp docs/*.gif docs/chm/docs cp docs/*.gif docs/chm/docs
......
...@@ -51,6 +51,7 @@ mkdir $RELDIR ...@@ -51,6 +51,7 @@ mkdir $RELDIR
cd $RELDIR || report_failure cd $RELDIR || report_failure
cp -r ../../docs/cache/dlib . || report_failure cp -r ../../docs/cache/dlib . || report_failure
cp -r ../../docs/cache/examples . || report_failure cp -r ../../docs/cache/examples . || report_failure
cp -r ../../docs/cache/python_examples . || report_failure
cp -r ../../docs/cache/tools . || report_failure cp -r ../../docs/cache/tools . || report_failure
echo Version: $RELEASE >> dlib/README.txt echo Version: $RELEASE >> dlib/README.txt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment