From fbc8133a860394bdcc5b6035bb5ad0bc124385c8 Mon Sep 17 00:00:00 2001 From: Denislav Denev <72409354+DenislavDenev@users.noreply.github.com> Date: Wed, 4 Mar 2026 06:49:45 +0200 Subject: [PATCH] fix(immich): correct LibRaw clone URL to official upstream (#12526) * fix(immich): correct LibRaw clone URL to official upstream The Immich helper script clones LibRaw from: https://github.com/libraw/libraw.git This repository does not exist and results in: fatal: unable to access ... error: 500 exit code: 128 The correct upstream repository is: https://github.com/LibRaw/LibRaw.git This should resolve installation failure during the LibRaw compilation stage. * Fix repository URL for libraw in install script --------- Co-authored-by: Chris --- ct/immich.sh | 2 +- install/immich-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/immich.sh b/ct/immich.sh index 8542f6044..e2f2e01a8 100644 --- a/ct/immich.sh +++ b/ct/immich.sh @@ -337,7 +337,7 @@ function compile_libraw() { if [[ "$LIBRAW_REVISION" != "$(grep 'libraw' ~/.immich_library_revisions | awk '{print $2}')" ]]; then msg_info "Recompiling libraw" [[ -d "$SOURCE" ]] && rm -rf "$SOURCE" - $STD git clone https://github.com/libraw/libraw.git "$SOURCE" + $STD git clone https://github.com/LibRaw/LibRaw.git "$SOURCE" cd "$SOURCE" $STD git reset --hard "$LIBRAW_REVISION" $STD autoreconf --install diff --git a/install/immich-install.sh b/install/immich-install.sh index 862e6ec4b..0e380f9b0 100644 --- a/install/immich-install.sh +++ b/install/immich-install.sh @@ -232,7 +232,7 @@ msg_ok "(2/5) Compiled libheif" msg_info "(3/5) Compiling libraw" SOURCE=${SOURCE_DIR}/libraw : "${LIBRAW_REVISION:=$(jq -cr '.revision' $BASE_DIR/server/sources/libraw.json)}" -$STD git clone https://github.com/libraw/libraw.git "$SOURCE" +$STD git clone https://github.com/LibRaw/LibRaw.git "$SOURCE" cd "$SOURCE" $STD git reset --hard "$LIBRAW_REVISION" $STD autoreconf --install