Skip to content
This repository has been archived by the owner on Mar 9, 2019. It is now read-only.

Commit

Permalink
changed a slash from \ (windows-like) to / (unix-like)
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrosilva committed Nov 9, 2010
1 parent 8fdc17e commit 00d5583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/iron_hammer/utils/ivy_builder.rb
Expand Up @@ -94,7 +94,7 @@ def modify_csproj
def self.rename_artifacts
Dir["Libraries/*.{dll,exe}"].each do |file|
file.scan(/Libraries\/(.*)-([\d\.]*)\.(.*)/) do |name, version, extension|
FileUtils.mv(file, "Libraries\\#{name}.#{extension}")
FileUtils.mv(file, "Libraries/#{name}.#{extension}")
end
end
end
Expand Down

0 comments on commit 00d5583

Please sign in to comment.