Skip to content
This repository has been archived by the owner on Oct 2, 2018. It is now read-only.

Commit

Permalink
Fixed problem with case sensitivity
Browse files Browse the repository at this point in the history
Fixes #101
  • Loading branch information
KrauseFx committed Sep 23, 2015
1 parent 310fe35 commit d8b111e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gym/generators/package_command_generator_xcode7.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def ipa_path
path = Dir[File.join(temporary_output_path, "*.ipa")].last

@ipa_path = File.join(temporary_output_path, "#{Gym.config[:output_name]}.ipa")
FileUtils.mv(path, @ipa_path) if File.expand_path(path) != File.expand_path(@ipa_path)
FileUtils.mv(path, @ipa_path) if File.expand_path(path).downcase != File.expand_path(@ipa_path).downcase
end
@ipa_path
end
Expand Down

0 comments on commit d8b111e

Please sign in to comment.