mirror of https://github.com/davisking/dlib.git
Fixed bug in makerel script related to the new python examples.
This commit is contained in:
parent
0dd6aad116
commit
cd25356e26
|
@ -105,7 +105,6 @@ makedocs ()
|
|||
mv cache.$$/dlib docs/cache/
|
||||
mv cache.$$/examples docs/cache/
|
||||
mv cache.$$/python_examples docs/cache/
|
||||
htmlify_python docs/cache/python_examples/
|
||||
mv cache.$$/tools docs/cache/
|
||||
rm -rf cache.$$
|
||||
|
||||
|
@ -145,8 +144,11 @@ makedocs ()
|
|||
cp docs/cache/examples/CMakeLists.txt docs/web/examples
|
||||
mkdir docs/chm/docs/examples || report_failure
|
||||
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.html docs/web/
|
||||
cp docs/cache/python_examples/*.py docs/chm/docs/
|
||||
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/chm/docs
|
||||
|
|
|
@ -51,6 +51,7 @@ mkdir $RELDIR
|
|||
cd $RELDIR || report_failure
|
||||
cp -r ../../docs/cache/dlib . || report_failure
|
||||
cp -r ../../docs/cache/examples . || report_failure
|
||||
cp -r ../../docs/cache/python_examples . || report_failure
|
||||
cp -r ../../docs/cache/tools . || report_failure
|
||||
|
||||
echo Version: $RELEASE >> dlib/README.txt
|
||||
|
|
Loading…
Reference in New Issue