mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
9770a743d2
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1282 f9c3cf11-9bcb-44bc-f272-b75c42450872
22 lines
400 B
Bash
Executable File
22 lines
400 B
Bash
Executable File
#!/bin/bash
|
|
|
|
svn remove html --force
|
|
doxygen Doxyfile
|
|
svn add html --force
|
|
|
|
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
|