Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Update lockfile.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomusm authored Nov 20, 2023
1 parent b3cb78d commit 60e3944
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/pod/lockfile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ def merge_pods(links, before, after)

inner_after_index = find_pod_index after, key_desc
inner_before_index = find_pod_index before, key_desc

puts "KEY "+ key_desc
puts "before "+ inner_before_index.to_s
puts "after "+ inner_after_index.to_s
unless inner_before_index.nil? || inner_after_index.nil?
after[inner_after_index] = before[inner_before_index]
else
Expand Down

0 comments on commit 60e3944

Please sign in to comment.