Skip to content

Commit

Permalink
Merge pull request #6711 from desertkaz/case-insensitive-pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtraDR authored Oct 6, 2023
2 parents 441ece9 + 8257582 commit 36533da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inventory-manager.lic
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ class InventoryManager
total_found = 0
DRC.message "Checking #{k}:"
v.each { |data|
if data.include?(item)
if data.downcase.include?(item)
total_found += 1
DRC.message "Match #{total_found}): #{data}"
end
Expand Down

0 comments on commit 36533da

Please sign in to comment.