From 9bf6a7e713a0c29fa2bca1eae8e1cd346201f042 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Wed, 21 May 2025 12:58:15 +0200 Subject: [PATCH] MT#62763 Fix shellcheck issues Warned-by: shellcheck Change-Id: I77fb42a54db668e4627db454f94455fcec75a222 --- ngcp-cleanup-voicemail-table | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ngcp-cleanup-voicemail-table b/ngcp-cleanup-voicemail-table index 17ee9e7..48d9667 100755 --- a/ngcp-cleanup-voicemail-table +++ b/ngcp-cleanup-voicemail-table @@ -51,7 +51,8 @@ if [ ! -r "${CFG_FILE}" ] ; then echo "ERROR: Can not read the configuration file" >&2 my_exit 1 fi - source "${CFG_FILE}" +# shellcheck disable=SC1090 +source "${CFG_FILE}" # Defining MySQL client connection parameters OPTS=(--defaults-extra-file="${PWD_FILE}" -h"${MY_DBHOST}" -s -N -e)