diff options
author | Brice Figureau <brice-puppet@daysofwonder.com> | 2009-01-03 14:17:42 +0100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-01-13 17:29:51 +1100 |
commit | 8142981571b438d4fe19f4097fe331378a322b33 (patch) | |
tree | d571cee42f8055fe2da7831ce32920c9dc126310 /lib/puppet/util/rdoc.rb | |
parent | 16ff58b7fbb12ab1b927414823c387c7e04fad08 (diff) | |
download | puppet-8142981571b438d4fe19f4097fe331378a322b33.tar.gz puppet-8142981571b438d4fe19f4097fe331378a322b33.tar.xz puppet-8142981571b438d4fe19f4097fe331378a322b33.zip |
Fix #1847 - Force re-examination of all files to generate correct indices
This bug is in fact a RDoc issue. The work-around is to always force
a full parse scan and not only what has changed.
Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
Diffstat (limited to 'lib/puppet/util/rdoc.rb')
-rw-r--r-- | lib/puppet/util/rdoc.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/puppet/util/rdoc.rb b/lib/puppet/util/rdoc.rb index b33e67c71..a18fa1b96 100644 --- a/lib/puppet/util/rdoc.rb +++ b/lib/puppet/util/rdoc.rb @@ -22,6 +22,7 @@ module Puppet::Util::RDoc # specify our own format & where to output options = [ "--fmt", "puppet", "--quiet", + "--force-update", "--op", outputdir ] options += files |