Properly extract language from json files

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-12-22 12:14:46 +01:00
parent 50e7eb95cc
commit 1a140cbdf8

View file

@ -14,7 +14,7 @@ module Twine
end
def determine_language_given_path(path)
match = /^.+-([^-]{2})\.json$/.match File.basename(path)
match = /^.+([a-z]{2}-[A-Z]{2})\.json$/.match File.basename(path)
return match[1] if match
return super