Skip to content

Commit 0c05072

Browse files
committed
Fix crash in doing tags
tags is an array, not a map in this context.
1 parent a98ec9d commit 0c05072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/commands/tags.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
elsif options[:line]
6161
puts tags.map { |t, _c| t }.to_tags.join(' ')
6262
else
63-
tags.each_key { |t| puts t }
63+
tags.each { |t, _| puts t }
6464
end
6565
end
6666
end

0 commit comments

Comments
 (0)