diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-02-07 21:58:17 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-02-07 21:58:17 +0100 |
commit | c0d1dee1cfb312099a1491e8d04c8a60986ad532 (patch) | |
tree | 276d4fd6ec383b7e414d80cc366bd3dca78ad04d | |
parent | 84e76064932289f17b911c890e883b3820e15115 (diff) | |
download | tmwa-c0d1dee1cfb312099a1491e8d04c8a60986ad532.tar.gz tmwa-c0d1dee1cfb312099a1491e8d04c8a60986ad532.tar.bz2 tmwa-c0d1dee1cfb312099a1491e8d04c8a60986ad532.tar.xz tmwa-c0d1dee1cfb312099a1491e8d04c8a60986ad532.zip |
try dpkg-reconfigure --frontend noninteractive locales as well
https://askubuntu.com/questions/683406/how-to-automate-dpkg-reconfigure-locales-with-one-command
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d86a7f..4b943b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,6 +24,8 @@ variables: &base_vars - locale-gen - update-locale LANG=en_US.UTF-8 - locale + - dpkg-reconfigure --frontend noninteractive locales + - locale #- locale - apt-cache search python3 @@ -39,6 +41,7 @@ variables: &base_vars <<: *base_vars script: - echo "Building TMW Athena $CI_BUILD_NAME" + - locale - git submodule update --init - git fetch -t - printf "Building TMW Athena version %s\n" "$(git describe --tags HEAD)" |