diff options
author | EuAndreh <eu@euandre.org> | 2021-08-23 08:22:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-23 08:22:05 -0300 |
commit | 96b1328de087b4cf04b86dbfed82ee5bf555bbb7 (patch) | |
tree | 840d25fc7c80465a862195c154ffcfe14ab4d2f8 /aux/workflow | |
parent | aux/guix/with-container.sh: Increase verbosity when building Docker image (diff) | |
download | gistatic-96b1328de087b4cf04b86dbfed82ee5bf555bbb7.tar.gz gistatic-96b1328de087b4cf04b86dbfed82ee5bf555bbb7.tar.xz |
aux/workflow/l10n.sh: Print progress message to STDERR instead of STDOUT
Diffstat (limited to 'aux/workflow')
-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")" |