소스 검색

convert char to upcase for sort check

pull/467/head
davemachado 6 년 전
부모
커밋
4a0d7cd78c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      build/validate_format.rb

+ 1
- 1
build/validate_format.rb 파일 보기

@@ -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 |


불러오는 중...
취소
저장