Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions step.sh
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,14 @@ eval $archive_cmd

#
# Exporting the ipa with Xcode Command Line tools

# You'll get a "Error Domain=IDEDistributionErrorDomain Code=14 "No applicable devices found."" error
# if $GEM_HOME is set and the project's directory includes a Gemfile - to fix this
# we'll unset GEM_HOME as that's not required for xcodebuild anyway.
# This probably fixes the RVM issue too, but that still should be tested.
unset GEM_HOME

#
export_command="xcodebuild -exportArchive"

if [[ "${xcode_major_version}" == "6" ]] ; then
Expand Down