Skip path rebuilding

This commit is contained in:
Adam Hoyle 2021-12-14 10:17:02 +00:00
parent 764f808d5a
commit 6b8c58d2eb

View file

@ -28,11 +28,10 @@ module OsmCommunityIndex
def self.add_to_i18n
community_index = OsmCommunityIndex.community_index
files = Dir.children(Rails.root.join("node_modules/osm-community-index/i18n/"))
files = Dir.children(Rails.root.join("node_modules/osm-community-index/i18n/*"))
files.each do |file|
path = Rails.root.join("node_modules/osm-community-index/i18n/#{file}")
locale = File.basename(file,".yaml")
community_index_yaml = YAML.safe_load(File.read(path))[locale]
community_index_yaml = YAML.safe_load(File.read(file))[locale]
# rails wants en-GB but osm-community-index has en_GB
locale_rails = locale.split("_").join("-")