diff --git a/lib/gym/generators/package_command_generator_xcode7.rb b/lib/gym/generators/package_command_generator_xcode7.rb index 022a319..bb2af2d 100644 --- a/lib/gym/generators/package_command_generator_xcode7.rb +++ b/lib/gym/generators/package_command_generator_xcode7.rb @@ -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