From 9ab4f2ffc131255ea961f063992fbf7ab022371b Mon Sep 17 00:00:00 2001 From: Olle Date: Thu, 28 Dec 2023 21:35:46 -0500 Subject: [PATCH] Update fluidd.sh download latest fluidd remove zip as a last step. --- userpatches/overlay/install_components/fluidd.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/userpatches/overlay/install_components/fluidd.sh b/userpatches/overlay/install_components/fluidd.sh index 7c6902d..3ae1cc0 100644 --- a/userpatches/overlay/install_components/fluidd.sh +++ b/userpatches/overlay/install_components/fluidd.sh @@ -3,8 +3,9 @@ install_fluidd(){ echo "🍰 install Fluidd" cd /home/debian - wget https://github.com/fluidd-core/fluidd/releases/download/v1.24.1/fluidd.zip + wget https://github.com/fluidd-core/fluidd/releases/latest/download/fluidd.zip unzip fluidd.zip -d fluidd chown -R debian:debian fluidd cp /tmp/overlay/fluidd/fluidd.cfg /home/debian/printer_data/config + rm fluidd.zip }