From 9e5680fa4e5a148fddac219c6a9d91494c80ce15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Sol=C3=ADs?= Date: Mon, 24 Feb 2025 11:00:49 -0600 Subject: [PATCH] fix: Remove warning when file no longer exists, that is handled later by the code --- friendica-fix-avatar-permissions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/friendica-fix-avatar-permissions.sh b/friendica-fix-avatar-permissions.sh index 274d2a1..b8072c4 100755 --- a/friendica-fix-avatar-permissions.sh +++ b/friendica-fix-avatar-permissions.sh @@ -31,8 +31,8 @@ loop_1() { tmppic="/tmp/temp_$(date +%s).webp" nice -n 10 cwebp -mt -af -quiet "${p}" -o "${tmppic}" #&> /dev/null if [[ -f "${tmppic}" ]]; then - size_new=$(stat -c%s "${tmppic}" || echo 0) - size_original=$(stat -c%s "${p}" || echo 0) + size_new=$(stat -c%s "${tmppic}" 2>/dev/null || echo 0) + size_original=$(stat -c%s "${p}" 2>/dev/null || echo 0) if [[ "${size_original}" -gt "${size_new}" ]]; then mv "${tmppic}" "${p}" #&> /dev/null else