Skip to content

Commit

Permalink
Merge pull request #805 from liangyongxiang/main
Browse files Browse the repository at this point in the history
images/gentoo: Fix missing locale-gen in musl base profile
  • Loading branch information
stgraber authored Dec 28, 2023
2 parents e554310 + acea3b3 commit 35f95ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions images/gentoo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -476,8 +476,10 @@ actions:
fi
# Resolve locale issues
echo en_US.UTF-8 UTF-8 > /etc/locale.gen
locale-gen
if command -v locale-gen >/dev/null; then
echo en_US.UTF-8 UTF-8 > /etc/locale.gen
locale-gen
fi
- trigger: post-unpack
action: |-
Expand Down

0 comments on commit 35f95ec

Please sign in to comment.