mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-31 06:34:17 -04: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user