mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
10 lines
179 B
Bash
Executable file
10 lines
179 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeou pipefail
|
|
|
|
BUILD_OS=${BUILD_OS:-debian}
|
|
|
|
# For UBI, the locale is already present in the image.
|
|
if [[ $BUILD_OS =~ debian ]]; then
|
|
locale-gen C.UTF-8
|
|
fi
|