We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4babf7f commit 72e5d0cCopy full SHA for 72e5d0c
1 file changed
lib/octocatalog-diff/catalog-diff/differ.rb
@@ -268,9 +268,7 @@ def filter_and_cleanup(catalog_resources)
268
# The order of tags is unimportant. Sort this array to avoid false diffs if order changes.
269
# Also if tags is empty, don't add. Most uses of catalog diff will want to ignore tags,
270
# and if you're ignoring tags you won't get here anyway. Also, don't add empty array of tags.
271
- unless @opts[:ignore_tags]
272
- hsh[k] = v.sort if v.is_a?(Array) && v.any?
273
- end
+ hsh[k] = v.sort if v.is_a?(Array) && v.any?
274
elsif k == 'file' || k == 'line'
275
# We don't care, for the purposes of catalog-diff, from which manifest and line this resource originated.
276
# However, we may report this to the user, so we will keep it in here for now.
0 commit comments