From fb331b0d1ad9ed22c931e55aa88be106687911dc Mon Sep 17 00:00:00 2001 From: Synchro Date: Mon, 11 Aug 2014 17:52:40 +0200 Subject: [PATCH] Update docs generation script --- docs/generatedocs.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/generatedocs.sh b/docs/generatedocs.sh index d0a5b39fb..9da1ddfe7 100755 --- a/docs/generatedocs.sh +++ b/docs/generatedocs.sh @@ -2,4 +2,7 @@ # Regenerate PHPMailer documentation # Run from within the docs folder rm -rf phpdoc/* -phpdoc --directory .. --target ./phpdoc --ignore test/,examples/,extras/,test_script/,vendor/ --sourcecode --force --title PHPMailer --template="clean" +phpdoc --directory .. --target ./phpdoc --ignore test/,examples/,extras/,test_script/,vendor/,language/ --sourcecode --force --title PHPMailer --template="clean" +# You can merge regenerated docs into a separate docs working copy without messing up the git status like so: +# rsync -a --delete --exclude ".git" --exclude "phpdoc-cache-*/" --exclude "README.md" phpdoc/ ../../phpmailer-docs +# After updating docs, push/PR them to the phpmailer gh-pages branch: https://github.com/PHPMailer/PHPMailer/tree/gh-pages