summaryrefslogtreecommitdiffstats
path: root/documentation/Rakefile
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-20 15:40:04 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-20 15:40:04 +0000
commit40e2db3cf7d08b4870384bf690728df87edb6835 (patch)
tree15f48323f7e1d7acf23d6652e7cbc57a4711fb7c /documentation/Rakefile
parent813d1c9daf8e4cb479980f6327968b64890a36d7 (diff)
downloadpuppet-40e2db3cf7d08b4870384bf690728df87edb6835.tar.gz
puppet-40e2db3cf7d08b4870384bf690728df87edb6835.tar.xz
puppet-40e2db3cf7d08b4870384bf690728df87edb6835.zip
All docs moved over now, and the real index page exists again
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1405 980ebf18-57e1-0310-9a29-db15c13687c0
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