Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add dist_clean tasks and keep packages
Keep packages between builds, and add dist_clean to wipe out packages.
  • Loading branch information
mcunha committed Mar 14, 2012
1 parent 17fb39d commit 2464eaf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rakefile.rb
Expand Up @@ -226,9 +226,12 @@ def ensure_nuget_packages()

task :clean do
FileUtils.rm_rf BUILD_DIR
FileUtils.rm_rf PACKAGES_DIR
FileUtils.rm_rf "Kayak/bin"
FileUtils.rm_rf "Kayak/obj"
FileUtils.rm_rf "Kayak.Tests/bin"
FileUtils.rm_rf "Kayak.Tests/obj"
end

task :dist_clean => [:clean] do
FileUtils.rm_rf PACKAGES_DIR
end

0 comments on commit 2464eaf

Please sign in to comment.