From 8142981571b438d4fe19f4097fe331378a322b33 Mon Sep 17 00:00:00 2001 From: Brice Figureau Date: Sat, 3 Jan 2009 14:17:42 +0100 Subject: 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 --- lib/puppet/util/rdoc.rb | 1 + 1 file changed, 1 insertion(+) 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 -- cgit