From ad1e84391d4fac45cf8072f59dfd52bb1cb51e55 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sat, 4 Mar 2023 22:41:51 +0100 Subject: [PATCH] Update 92-local_mounts.sh --- .templates/92-local_mounts.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.templates/92-local_mounts.sh b/.templates/92-local_mounts.sh index 52684d02e..48aa9145f 100755 --- a/.templates/92-local_mounts.sh +++ b/.templates/92-local_mounts.sh @@ -14,7 +14,9 @@ if [ ${#autodisks[@]} -eq 0 ]; then bashio::log.info "No Disk with labels." else bashio::log.info "Available Disk Labels:" + # shellcheck disable=SC2068 for disk in ${autodisks[@]}; do + # shellcheck disable=SC2046 bashio::log.info "\t${disk}[$(lsblk $(blkid -L "$disk") -no fstype)]" done fi