summaryrefslogtreecommitdiffstats
path: root/documentation/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/Rakefile')
-rw-r--r--documentation/Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/Rakefile b/documentation/Rakefile
index ecaf3b901..9a88b3b5a 100644
--- a/documentation/Rakefile
+++ b/documentation/Rakefile
@@ -6,7 +6,7 @@ htmlfiles = []
CLEAN = []
-FileList['*.page'].each do |src|
+FileList['**/*.page'].each do |src|
name = src.sub(".page", ".html")
htmlfiles << name
CLEAN << name
@@ -33,6 +33,6 @@ task :html => htmlfiles
task :default => :html
task :docs do
- sh %{puppetdoc --arguments > puppetd-executable-reference.page}
- sh %{puppetdoc --types > typedocs.page}
+ sh %{puppetdoc --arguments > documentation/puppetd-executable-reference.page}
+ sh %{puppetdoc --types > documentation/typedocs.page}
end