mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-18 16:02:59 +01:00
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 <punk.sand7393@fastmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user