From cee54128cfc5f279c87e820cf698648dd9614389 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Fri, 11 Feb 2022 20:11:37 +0100 Subject: [PATCH] fix: simulavr not compiling use link for simulavr as mentioned in the klipper docs here: https://github.com/Klipper3d/klipper/blob/master/docs/Debugging.md#testing-with-simulavr --- docker/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/start.sh b/docker/start.sh index 114ba34..15a22d8 100644 --- a/docker/start.sh +++ b/docker/start.sh @@ -3,7 +3,7 @@ sudo -S ln -s /bin/true /bin/systemctl klipper_git="https://github.com/klipper3d/klipper" moonraker_git="https://github.com/Arksine/moonraker" -simulavr_git="https://git.savannah.nongnu.org/git/simulavr.git" +simulavr_git="git://git.savannah.nongnu.org/simulavr.git" simulavr_cfg="/usr/src/simulavr.config" cd ~ || exit 1 @@ -56,7 +56,7 @@ build_firmware(){ setup_simulavr(){ [ -d ~/simulavr ] && return echo "##### Cloning Simulavr ..." - git clone $simulavr_git --depth 1 + git clone $simulavr_git echo "##### Done!" }