From ff65d1a675d026d94a449abf10910c5822546993 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 19 May 2024 15:25:47 -0400 Subject: [PATCH] Fix permissions of files generated by Doxygen. --- docs/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index fc111d9f..b5a4563f 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -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