diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-27 01:26:19 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-27 01:26:19 +0200 |
commit | 6bf60c67249175ea775cf5addebdf3e0736a6883 (patch) | |
tree | 0e76c580fb6b5b6948dae9aa9eab618379aed7de /bin | |
parent | af4ab34ffd2a1dcf26ac2f6ac44aad48f34af33e (diff) |
Exit early if there is no doxygen
Notes
Notes:
split repo tag: bootstrap_LO-BASE-INTEGRATION-DEV300_m98
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/find-undocumented-classes | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/find-undocumented-classes b/bin/find-undocumented-classes index 3040660eefa0..8bab72bc977c 100755 --- a/bin/find-undocumented-classes +++ b/bin/find-undocumented-classes @@ -2,6 +2,8 @@ # finds undocumented classes in the current directory (recursive) +type -p doxygen >/dev/null || exit + filter= quiet=n if [ "$1" = "-q" ]; then |