From 2242bf7db0e320e01ebb9c8b71e7b786ede9e881 Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Fri, 25 Oct 2024 22:56:34 +0200 Subject: [PATCH] sspatch: fix --- sspatch/all/usr/bin/sspatch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sspatch/all/usr/bin/sspatch.sh b/sspatch/all/usr/bin/sspatch.sh index 362a0c0..25bdbad 100755 --- a/sspatch/all/usr/bin/sspatch.sh +++ b/sspatch/all/usr/bin/sspatch.sh @@ -18,7 +18,7 @@ function copy_file() { chown SurveillanceStation:SurveillanceStation "${target}/${file}" chmod "${mode}" "${target}/${file}" else - if [ "${file}" == "ssrtmpclientd" ]; then + if [ "${file}" == "ssrtmpclientd" ] || [ "${file}" == "libssutils.org.so" ]; then echo "sspatch: ${file} not found, skipping" return 0 else @@ -96,4 +96,4 @@ if [ -d "${SSPATH}" ]; then /usr/syno/bin/synopkg restart SurveillanceStation fi -exit 0 \ No newline at end of file +exit 0