mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-21 17:20:47 +03:00
modules/age: set LANG
rage has a localization crate as a dependency that whines when LANG is unset.
This commit is contained in:
parent
37b1d2aa3f
commit
7ba959742e
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ let
|
|||
echo "decrypting ${secretType.file} to ${secretType.path}..."
|
||||
TMP_FILE="${secretType.path}.tmp"
|
||||
mkdir -p $(dirname ${secretType.path})
|
||||
(umask 0400; ${ageBin} --decrypt ${identities} -o "$TMP_FILE" "${secretType.file}")
|
||||
(umask 0400; LANG=${config.i18n.defaultLocale} ${ageBin} --decrypt ${identities} -o "$TMP_FILE" "${secretType.file}")
|
||||
chmod ${secretType.mode} "$TMP_FILE"
|
||||
chown ${secretType.owner}:${secretType.group} "$TMP_FILE"
|
||||
mv -f "$TMP_FILE" '${secretType.path}'
|
||||
|
|
Loading…
Reference in a new issue