Properly extract language from json files
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
parent
50e7eb95cc
commit
1a140cbdf8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Reference in a new issue