Immich: add message to indicate image-processing library update check (#6935)

This commit is contained in:
Chris 2025-08-18 10:26:27 -04:00 committed by GitHub
parent 66a582dd09
commit bb3c77f1b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) }')