Browse Source

Fix permissions of files generated by Doxygen.

tags/v2.6.0
Andrew Belt 11 months ago
parent
commit
ff65d1a675
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      docs/Makefile

+ 4
- 1
docs/Makefile View File

@@ -3,12 +3,15 @@ all: doxygen

doxygen:
doxygen Doxyfile
# Fix 700 and 500 permissions that Doxygen generates for some reason
find html -type d -exec chmod 755 {} \;
find html -type f -exec chmod 644 {} \;

run: doxygen
http-server html

upload: doxygen
rsync html/ vcvrack.com:vcvrack.com/docs-v2/ -ruz --info=progress2 --delete
rsync html/ vcvrack.com:docs-v2/ -ruz --info=progress2 --delete

clean:
rm -rfv html

Loading…
Cancel
Save