Skip to content

Commit 56eb016

Browse files
ruhi47rtyagi
andauthored
Solved Issue #989 (#991)
Co-authored-by: rtyagi <rh679297@dal.ca>
1 parent 651154d commit 56eb016

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/language-check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
# Scrape ISO 639 language codes from the Wiki page
2828
wget -qO- https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes | \
2929
nokogiri -e 'puts $_.css(".wikitable td:nth-child(2)").map(&:text)' | \
30-
sed -nr '/^.{0,2}$/p' > iso639.txt # Grab only two letter values
30+
sed -nr '/^.{0,2}$/p' | # Grab only two letter values
31+
tr '[:lower:]' '[:upper:]' > iso639.txt # Covert letters to uppercase
3132
3233
# Get list of README file names
3334
readme_suffixes=$(ls README-* | sed 's/README-//g; s/.md//g')

0 commit comments

Comments
 (0)