diff options
author | EuAndreh <eu@euandre.org> | 2021-08-23 08:19:09 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-23 08:19:13 -0300 |
commit | 68b5552c31868f1070852af3a1bd5e57183bece6 (patch) | |
tree | a4cbe0e29c5ad7d6ba0375e5f8f6231acd931b68 | |
parent | aux/guix/with-container.sh: Increase verbosity when building Docker pack (diff) | |
download | git-permalink-68b5552c31868f1070852af3a1bd5e57183bece6.tar.gz git-permalink-68b5552c31868f1070852af3a1bd5e57183bece6.tar.xz |
aux/workflow/l10n.sh: Print progress message to STDERR instead of STDOUT
-rwxr-xr-x | aux/workflow/l10n.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aux/workflow/l10n.sh b/aux/workflow/l10n.sh index ff5181e..cf687aa 100755 --- a/aux/workflow/l10n.sh +++ b/aux/workflow/l10n.sh @@ -29,7 +29,7 @@ assert_arg "${LANGS:-}" '-l LANGS' for from_f in "$@"; do for lang in $LANGS ${CONTRIBLANGS:-}; do to_f="$(echo "$from_f" | sed "s/\.en\./.$lang./")" - printf 'Generating %s...\n' "$to_f" + printf 'Generating %s...\n' "$to_f" >&2 pofile="po/LC_MESSAGES/$from_f/$lang.po" mkdir -p "$(dirname "$pofile")" |