forked from science-ation/science-ation
6 lines
223 B
Bash
6 lines
223 B
Bash
|
#!/bin/sh
|
||
|
# Regenerate PHPMailer documentation
|
||
|
# Run from within the docs folder
|
||
|
rm -rf phpdocs/*
|
||
|
phpdoc --directory .. --target ./phpdoc --ignore test/,examples/,extras/,test_script/ --sourcecode --force --title PHPMailer
|