From bb3c77f1b66e612dcf80819740de97bb0eeb3ff4 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 18 Aug 2025 10:26:27 -0400 Subject: [PATCH] Immich: add message to indicate image-processing library update check (#6935) --- ct/immich.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ct/immich.sh b/ct/immich.sh index c6c627c150..3a60e0e3cd 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -52,11 +52,12 @@ function update_script() { if [[ -f ~/.immich_library_revisions ]]; then libraries=("libjxl" "libheif" "libraw" "imagemagick" "libvips") cd "$BASE_DIR" + msg_info "Checking for updates to custom image-processing libraries" $STD git pull for library in "${libraries[@]}"; do compile_"$library" done - msg_ok "Image-processing libraries updated" + msg_ok "Image-processing libraries up to date" fi RELEASE="1.138.0" #RELEASE=$(curl -fsSL https://api.github.com/repos/immich-app/immich/releases?per_page=1 | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')