6 lines
241 B
Bash
6 lines
241 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Regenerate PHPMailer documentation
|
||
|
|
# Run from within the docs folder
|
||
|
|
rm -rf phpdoc/*
|
||
|
|
phpdoc --directory .. --target ./phpdoc --ignore test/,examples/,extras/,test_script/ --sourcecode --force --title PHPMailer --template="clean"
|