Skip to content

Commit

Permalink
Solved Issue #989 (#991)
Browse files Browse the repository at this point in the history
Co-authored-by: rtyagi <[email protected]>
  • Loading branch information
ruhi47 and rtyagi committed Sep 4, 2024
1 parent 651154d commit 56eb016
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/language-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
# Scrape ISO 639 language codes from the Wiki page
wget -qO- https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes | \
nokogiri -e 'puts $_.css(".wikitable td:nth-child(2)").map(&:text)' | \
sed -nr '/^.{0,2}$/p' > iso639.txt # Grab only two letter values
sed -nr '/^.{0,2}$/p' | # Grab only two letter values
tr '[:lower:]' '[:upper:]' > iso639.txt # Covert letters to uppercase
# Get list of README file names
readme_suffixes=$(ls README-* | sed 's/README-//g; s/.md//g')
Expand Down

0 comments on commit 56eb016

Please sign in to comment.