We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 651154d commit 56eb016Copy full SHA for 56eb016
.github/workflows/language-check.yml
@@ -27,7 +27,8 @@ jobs:
27
# Scrape ISO 639 language codes from the Wiki page
28
wget -qO- https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes | \
29
nokogiri -e 'puts $_.css(".wikitable td:nth-child(2)").map(&:text)' | \
30
- sed -nr '/^.{0,2}$/p' > iso639.txt # Grab only two letter values
+ sed -nr '/^.{0,2}$/p' | # Grab only two letter values
31
+ tr '[:lower:]' '[:upper:]' > iso639.txt # Covert letters to uppercase
32
33
# Get list of README file names
34
readme_suffixes=$(ls README-* | sed 's/README-//g; s/.md//g')
0 commit comments