Skip to content

Commit

Permalink
fix: Use sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
sopelj committed Aug 17, 2024
1 parent d87f49a commit 2593ffd
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ jobs:

- name: Setup Locales
run: |
apt-get install locales
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
echo "fr_FR.UTF-8 UTF-8" >> /etc/locale.gen
echo "ja_JP.UTF-8 UTF-8" >> /etc/locale.gen
locale-gen
sudo apt-get install -y locales
echo "en_US.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
echo "fr_FR.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
echo "ja_JP.UTF-8 UTF-8" | sudo tee -a /etc/locale.gen
sudo locale-gen
sudo locale -a
localectl status
- name: Install Python Dependencies
run: |
Expand Down

0 comments on commit 2593ffd

Please sign in to comment.