Procházet zdrojové kódy

convert char to upcase for sort check

pull/467/head
davemachado před 6 roky
rodič
revize
4a0d7cd78c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      build/validate_format.rb

+ 1
- 1
build/validate_format.rb Zobrazit soubor

@@ -47,7 +47,7 @@ File.foreach(filename).with_index do | line, line_num |
end

# char to check is the first char in the first column
check_char = line.split("|")[1].strip[0]
check_char = line.split("|")[1].strip[0].upcase
section_to_entries[section].push(check_char)
end
sections.each do | sect |


Načítá se…
Zrušit
Uložit