From: Frank Brehm Date: Wed, 6 Nov 2019 16:20:33 +0000 (+0100) Subject: Applying shellcheck to bin/compile-xlate-msgs.sh X-Git-Tag: 1.3.7~1^2~3 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=5cbdd0b8381a35cdd0570440988bfa80c769d24e;p=pixelpark%2Fcreate-terraform.git Applying shellcheck to bin/compile-xlate-msgs.sh --- 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