You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
631 B
30 lines
631 B
#!/bin/bash |
|
rm -rf html |
|
svn cleanup |
|
svn update html |
|
|
|
junkFiles=$(find html -regex ".*\.\(map\|md5\)") |
|
svn remove --force $junkFiles |
|
svn commit |
|
|
|
doxygen Doxyfile |
|
doxygen -w html html/header.html html/footer.html html/stylesheet.css |
|
|
|
find html -regex ".*\.\(map\|md5\)" -exec rm {} \; |
|
svn add --force html/* |
|
|
|
for imageExt in "png" |
|
do |
|
imageFiles=$(find html -name *.$imageExt) |
|
echo image files: $imageFiles |
|
svn propset svn:mime-type image/$imageExt $imageFiles |
|
done |
|
|
|
for textExt in "html" |
|
do |
|
textFiles=$(find html -name *.$textExt) |
|
echo text files: $textFiles |
|
svn propset svn:mime-type text/$textExt $textFiles |
|
done |
|
|
|
svn commit
|
|
|