From 5cbdd0b8381a35cdd0570440988bfa80c769d24e Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Wed, 6 Nov 2019 17:20:33 +0100 Subject: [PATCH] Applying shellcheck to bin/compile-xlate-msgs.sh --- bin/compile-xlate-msgs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/compile-xlate-msgs.sh b/bin/compile-xlate-msgs.sh index e31a56b..9836f63 100755 --- a/bin/compile-xlate-msgs.sh +++ b/bin/compile-xlate-msgs.sh @@ -6,14 +6,14 @@ set -u this_script=$( readlink -f "$0" ) cur_dir=$( pwd ) -base_dir=$( dirname $( dirname "${this_script}" ) ) -cd ${base_dir} +base_dir=$( dirname "$( dirname "${this_script}" )" ) +cd "${base_dir}" locale_dir=locale locale_domain="create_terraform" -pot_file="${locale_dir}/${locale_domain}.pot" -po_with=99 -my_address="${DEBEMAIL:-frank.brehm@pixelpark.com}" +# pot_file="${locale_dir}/${locale_domain}.pot" +# po_with=99 +# my_address="${DEBEMAIL:-frank.brehm@pixelpark.com}" if [[ ! -d "${locale_dir}" ]] ; then echo "Localisation directory '${cur_dir}/${locale_dir}' not found." >&2 -- 2.39.5