Skip to content

Commit

Permalink
fix binary archival
Browse files Browse the repository at this point in the history
  • Loading branch information
Clinton Sheppard committed Nov 17, 2010
1 parent eaf6a2f commit 9410a03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RakeFile
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ desc "Compiles the app"
task :compile => [:clean, :version] do
MSBuildRunner.compile :compilemode => COMPILE_TARGET, :solutionfile => 'src/NHibernateHbmToFluent.sln', :clrversion => CLR_VERSION

outDir = "src/NHibernateHbmToFluent/WinForm/bin/#{COMPILE_TARGET}"
outDir = "src/WinForm/bin/#{COMPILE_TARGET}"

Dir.glob(File.join(outDir, "*.{dll,pdb}")){|file|
Dir.glob(File.join(outDir, "*.{dll,pdb,exe}")){|file|
copy(file, props[:archive]) if File.file?(file)
}
end
Expand Down

0 comments on commit 9410a03

Please sign in to comment.