Skip to content

Commit

Permalink
extra log line
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoHinderling committed Dec 10, 2024
1 parent f84e5df commit 65db87d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,13 @@ platform :ios do
latest_commit = g.log[0]

puts "Latest commit details:"
puts latest_commit.inspect
puts g.log[0].inspect
puts "Parents:"
puts latest_commit.parents.inspect if latest_commit.respond_to?(:parents)
puts g.log[0].parents.inspect if g.log[0].respond_to?(:parents)

g.log.first(3).each_with_index do |commit, index|
puts "#{index}: #{commit.sha} - #{commit.message&.lines&.first}"
end

# if latest_commit.parents.length > 1
# # For merge commits
Expand Down

0 comments on commit 65db87d

Please sign in to comment.