From 87e71cc6ab78b3f5de41f0d24362dab974c9cbcd Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 20 Jan 2022 10:04:42 +0100 Subject: [PATCH] Update 19-json_repair.sh --- transmission/rootfs/etc/cont-init.d/19-json_repair.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmission/rootfs/etc/cont-init.d/19-json_repair.sh b/transmission/rootfs/etc/cont-init.d/19-json_repair.sh index c24e8143c..9e7af51a9 100644 --- a/transmission/rootfs/etc/cont-init.d/19-json_repair.sh +++ b/transmission/rootfs/etc/cont-init.d/19-json_repair.sh @@ -22,7 +22,7 @@ if [ -f ${JSONTOCHECK} ]; then mapfile -t arr < <(jq -r 'keys[]' ${JSONSOURCE}) # Check if all keys are still there, or add them - # hadolint IGNORE=SC2068 + # spellcheck IGNORE=SC2068 for KEYS in ${arr[@]}; do # Check if key exists KEYSTHERE=$(jq "has(\"${KEYS}\")" ${JSONTOCHECK})