From 50d18923c49f2d5385bc3549bd022ae68cd6809a Mon Sep 17 00:00:00 2001 From: NiX <105677206+NiXTheDev@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:13:37 +0300 Subject: [PATCH 1/2] Add git-lfs Support large(r) files by adding git-lfs to both core and periphery Core probably doesn't need this, but just in case since it also installs git --- bin/core/debian-deps.sh | 3 ++- bin/periphery/debian-deps.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/core/debian-deps.sh b/bin/core/debian-deps.sh index 8eb371e59..7dfc2ba75 100644 --- a/bin/core/debian-deps.sh +++ b/bin/core/debian-deps.sh @@ -3,7 +3,8 @@ ## Core deps installer apt-get update -apt-get install -y git curl ca-certificates iproute2 +apt-get install -y git curl ca-certificates iproute2 git-lfs +git lfs install rm -rf /var/lib/apt/lists/* diff --git a/bin/periphery/debian-deps.sh b/bin/periphery/debian-deps.sh index 363a5f53c..c715e85a4 100644 --- a/bin/periphery/debian-deps.sh +++ b/bin/periphery/debian-deps.sh @@ -3,7 +3,8 @@ ## Periphery deps installer apt-get update -apt-get install -y git curl wget ca-certificates +apt-get install -y git git-lfs curl wget ca-certificates +git lfs install install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc From a1a33a02ddc10f0c31e396e851988cda3321607b Mon Sep 17 00:00:00 2001 From: NiX <105677206+NiXTheDev@users.noreply.github.com> Date: Fri, 26 Dec 2025 20:25:30 +0300 Subject: [PATCH 2/2] fix: git-lfs install spelling --- bin/core/debian-deps.sh | 2 +- bin/periphery/debian-deps.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/core/debian-deps.sh b/bin/core/debian-deps.sh index 7dfc2ba75..3c27e361e 100644 --- a/bin/core/debian-deps.sh +++ b/bin/core/debian-deps.sh @@ -4,7 +4,7 @@ apt-get update apt-get install -y git curl ca-certificates iproute2 git-lfs -git lfs install +git-lfs install rm -rf /var/lib/apt/lists/* diff --git a/bin/periphery/debian-deps.sh b/bin/periphery/debian-deps.sh index c715e85a4..1177b6db7 100644 --- a/bin/periphery/debian-deps.sh +++ b/bin/periphery/debian-deps.sh @@ -4,7 +4,7 @@ apt-get update apt-get install -y git git-lfs curl wget ca-certificates -git lfs install +git-lfs install install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc