mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 17:57:24 +08:00
DEV: i18n:check
rake task was broken on Ruby 3.1 (#20103)
`server.en.yml` contains aliases and Ruby 3.1 made changes to `YAML.load_file`. see https://www.ctrl.blog/entry/ruby-psych4.html
This commit is contained in:
parent
a5c2146dc0
commit
f4ce402dc4
|
@ -19,8 +19,8 @@ class LocaleFileChecker
|
|||
|
||||
@relative_locale_path =
|
||||
Pathname.new(locale_path).relative_path_from(Pathname.new(Rails.root)).to_s
|
||||
@locale_yaml = YAML.load_file(locale_path)
|
||||
@reference_yaml = YAML.load_file(reference_path)
|
||||
@locale_yaml = YAML.load_file(locale_path, aliases: true)
|
||||
@reference_yaml = YAML.load_file(reference_path, aliases: true)
|
||||
|
||||
next if @locale_yaml.blank? || @locale_yaml.first[1].blank?
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user