1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-12-05 03:41:07 +01:00

Document locale workaround

This commit is contained in:
Paul Schaub 2025-09-26 22:50:52 +02:00
parent 9f9ad7bcab
commit 33c6ba3602
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -11,6 +11,9 @@ plugins {
graalvmNative {
toolchainDetection = true
// Unfortunately, GraalVM does set the default locale at build time and does not support detecting the
// system locale at runtime. As a workaround, we set the default locale to English to prevent users
// being surprised by sudden German messages
binaries.main {
buildArgs.add('-H:DefaultLocale=en')
buildArgs.add('-H:IncludeLocales=de,en')