From 29ee6cdff3a300eb1c03cf8a34d4ff471f090162 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:34:04 +0100 Subject: [PATCH] plex: prevent [] syntax issue (#9318) --- ct/plex.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/plex.sh b/ct/plex.sh index c30b0228d..43bbff157 100644 --- a/ct/plex.sh +++ b/ct/plex.sh @@ -23,7 +23,8 @@ function update_script() { header_info check_container_storage check_container_resources - if [ ! -f /etc/apt/sources.list.d/plexmediaserver.list ]] && [[ ! -f /etc/apt/sources.list.d/plexmediaserver.sources ]]; then + if [[ ! -f /etc/apt/sources.list.d/plexmediaserver.list ]] \ + && [[ ! -f /etc/apt/sources.list.d/plexmediaserver.sources ]]; then msg_error "No ${APP} Installation Found!" exit fi