Commit 4aee4613 authored by Davis King's avatar Davis King
Browse files

Changed the makesnapshot script so that it creates an index.html file with

links to the snapshot archives and chm file.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402654
parent 4842f505
...@@ -45,6 +45,16 @@ bzip2 $SOURCE_TAR ...@@ -45,6 +45,16 @@ bzip2 $SOURCE_TAR
rm -rf $RELDIR rm -rf $RELDIR
# make an index.html with links to the snapshot archives and chm file
echo "<html><body>" > index.html
echo "<a href='$SOURCE_ZIP'>$SOURCE_ZIP</a><br/>" >> index.html
echo "<a href='$SOURCE_TAR.bz2'>$SOURCE_TAR.bz2</a><br/>" >> index.html
echo "<a href='dlib_documentation_snapshot-rev$REVISION.chm'>dlib_documentation_snapshot-rev$REVISION.chm</a><br/>" >> index.html
echo "</body></html>" >> index.html
# finally, generate the chm help file
wine ../docs/chm/htmlhelp/hhc.exe ../docs/chm/lib.hhp wine ../docs/chm/htmlhelp/hhc.exe ../docs/chm/lib.hhp
mv ../docs/chm/help.chm dlib_documentation_snapshot-rev$REVISION.chm mv ../docs/chm/help.chm dlib_documentation_snapshot-rev$REVISION.chm
......
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