diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-14 18:11:53 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-14 18:11:53 +0000 |
commit | bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c (patch) | |
tree | 712ac9b7b153a2b6c198af18e3501982ae24b587 /bin/puppetca | |
parent | 64eb1e8c37bfc4b35814f3aa58dd497b4bb3d8b7 (diff) | |
download | puppet-bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c.tar.gz puppet-bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c.tar.xz puppet-bf5d0bc3cd4fd688aae2c0b1b93c32ddcbf3983c.zip |
Catching all errors encountered during loading, not just LoadError, to fix ongoing problems with rdoc/usage.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1593 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'bin/puppetca')
-rwxr-xr-x | bin/puppetca | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/puppetca b/bin/puppetca index d694ba294..11a75937b 100755 --- a/bin/puppetca +++ b/bin/puppetca @@ -84,7 +84,7 @@ $haveusage = true begin require 'rdoc/usage' -rescue LoadError +rescue $haveusage = false end |