From 1485f7c4e8aa78af582783c18805eb3296f11fb4 Mon Sep 17 00:00:00 2001 From: Emfox Zhou Date: Sat, 15 Mar 2025 15:43:41 +0800 Subject: [PATCH] locale-gen on Debian does not take arguments and just read from /etc/locale.gen. (#648) --- image/prepare.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/image/prepare.sh b/image/prepare.sh index 02f2e72..31cf6e2 100755 --- a/image/prepare.sh +++ b/image/prepare.sh @@ -50,6 +50,7 @@ case $(lsb_release -is) in ;; Debian) $minimal_apt_get_install locales locales-all + echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ;; *) ;;