From 4cd0d0e0aaa3b90734e0f08eedafd37334d91de8 Mon Sep 17 00:00:00 2001 From: Geoff Date: Tue, 5 Nov 2024 00:35:05 -0800 Subject: [PATCH] Fix DSM 7 minor version check --- plexupdate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexupdate.sh b/plexupdate.sh index 6585a32..66510f7 100755 --- a/plexupdate.sh +++ b/plexupdate.sh @@ -314,7 +314,7 @@ if [ -z "${DISTRO_INSTALL}" ]; then DISTRO="synology" if grep -q "major=\"7\"" /etc/VERSION; then DISTRO="synology-dsm72" - if [ grep -q "minor=\"[01]\"" /etc/VERSION ]; then + if grep -q "minor=\"[01]\"" /etc/VERSION; then DISTRO="synology-dsm7" fi fi