summaryrefslogtreecommitdiff
path: root/util/travis_docs.sh
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2018-03-22 00:45:24 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2018-03-23 22:42:08 -0700
commit70cf46d4f17fe221a4f11322cb083a4a6f64e980 (patch)
tree598fafbf4c3ed0ee2fd9e3e5368147dc0024f044 /util/travis_docs.sh
parent3ee59a79aaa333c82e088a2e359a16fa37a2352f (diff)
fix the moxygen invocation
Diffstat (limited to 'util/travis_docs.sh')
-rw-r--r--util/travis_docs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/travis_docs.sh b/util/travis_docs.sh
index ec553952c9..74eee3c267 100644
--- a/util/travis_docs.sh
+++ b/util/travis_docs.sh
@@ -7,7 +7,7 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip docs]"* ]] ; then
echo "Generating API docs..."
rm -rf doxygen
doxygen Doxyfile
- moxygen -a -g -o -q docs/api_%s.md doxygen/xml
+ moxygen -q -a -g -o docs/api_%s.md doxygen/xml
git add docs/api_*
git commit -m'autogenerated api docs for ${TRAVIS_COMMIT_RANGE}' || true
fi