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

Commit

Permalink
Fixed printing out the command when having Swift enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
KrauseFx committed Aug 13, 2015
1 parent 9316f94 commit 8c73f1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/gym/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ def run
move_results
end

private

#####################################################
# @!group Printing out things
#####################################################
Expand Down Expand Up @@ -42,6 +40,8 @@ def print_command(command, title)
)
end

private

#####################################################
# @!group The individual steps
#####################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/gym/xcode_fix.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def patch_package_application
Dir[File.join(Helper.gem_path("gym"), "lib/assets/package_application_patches/*.diff")].each do |patch|
Helper.log.info "Applying Package Application patch: #{File.basename(patch)}" unless Gym.config[:silent]
command = ["patch #{patched_package_application_path} < #{patch}"]
print_command(command, "Applying Package Application patch: #{File.basename(patch)}") if $verbose
Runner.new.print_command(command, "Applying Package Application patch: #{File.basename(patch)}") if $verbose

FastlaneCore::CommandExecutor.execute(command: command,
print_all: false,
Expand Down

0 comments on commit 8c73f1f

Please sign in to comment.