From 4a0d7cd78cf05921a7f009d4f8fb457a81c066d2 Mon Sep 17 00:00:00 2001 From: davemachado Date: Fri, 18 Aug 2017 11:10:17 -0400 Subject: [PATCH] convert char to upcase for sort check --- build/validate_format.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/validate_format.rb b/build/validate_format.rb index 512d93ab..e96fcdb8 100755 --- a/build/validate_format.rb +++ b/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 |