Skip to content

Commit

Permalink
Separate doxygen generation and html tidy into separate scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Miller committed Mar 23, 2014
1 parent 3a7708c commit 2bb60bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 0 additions & 5 deletions doc/document.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/bin/bash

WHICH_TIDY=$(which tidy)
if [ $? == 0 ] ; then
find html "*.html" | xargs -n1 tidy -config tidy.config -m
fi

WHICH_DOXYGEN=$(which doxygen)
if [ $? == 0 ] ; then
doxygen
Expand Down
6 changes: 6 additions & 0 deletions doc/tidy.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

WHICH_TIDY=$(which tidy)
if [ $? == 0 ] ; then
find html "*.html" | xargs -n1 tidy -config tidy.config -m
fi

0 comments on commit 2bb60bf

Please sign in to comment.