Update generate-report to explicity state if no strings have tags.
This commit is contained in:
parent
61b04736dc
commit
b4e5b4a698
1 changed files with 3 additions and 1 deletions
|
@ -216,7 +216,9 @@ module Twine
|
|||
end
|
||||
end
|
||||
|
||||
if keys_without_tags.length > 0
|
||||
if keys_without_tags.length == total_strings
|
||||
puts "\nNone of your strings have tags."
|
||||
elsif keys_without_tags.length > 0
|
||||
puts "\nStrings without tags:"
|
||||
keys_without_tags.each do |key|
|
||||
puts key
|
||||
|
|
Reference in a new issue