> With your rake file, I get:
> 
>   $ rake --tasks
>   (in C:/Documents and Settings/BA2828/My Documents/pgm/ruby/pkgtask)
>   rake clobber_package  # Remove package products
>   rake package          # Build all the packages
>   rake repackage        # Force a rebuild of the package files
> 
> --
> -- Jim Weirich

Thanks for the inspiration! I double checked my code and found my silly 
silly mistake. I put package tasks inside another (empty) task. Shame on 
me!

desc 'Build entire site'
task :build => [:copy_images, :copy_stylesheets, :generate_html ] do

# Package tasks
Rake::PackageTask.new("webdesign", "0.1") do |p|
  p.need_zip = true
  p.package_files.include('conf')
end

end


Now I feel like many different kind of idiots :)

Problem solved.
--
Leo

-- 
Posted via http://www.ruby-forum.com/.