Skip to content

Commit

Permalink
CI: generate localedef to avoid utf-8 in locale name
Browse files Browse the repository at this point in the history
  • Loading branch information
hgrecco committed Jan 20, 2024
1 parent 88ff676 commit 2a25945
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ jobs:

- name: Install locales
if: ${{ matrix.extras != null }}
run: sudo apt-get install language-pack-es language-pack-fr language-pack-ro
run: |
sudo apt-get install language-pack-es language-pack-fr language-pack-ro
sudo localedef -i es_ES -f UTF-8 es_ES
sudo localedef -i fr_FR -f UTF-8 fr_FR
sudo localedef -i ro_RO -f UTF-8 ro_RO
- name: Install dependencies
run: |
Expand Down

0 comments on commit 2a25945

Please sign in to comment.