From f61bdbb50aebff455193eb0e6636b0215cf138d2 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 11 Jul 2024 13:43:10 +0200 Subject: [PATCH] fix(requirements): temp path for broken deb-get install --- _requirements.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_requirements.sh b/_requirements.sh index 371329a..18567de 100644 --- a/_requirements.sh +++ b/_requirements.sh @@ -51,4 +51,8 @@ nala install -y \ # Install useful deb installer echo "[server_config] > Installing required utilites (useful .deb installer)" -curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | bash -s install deb-get +# Classic install is broken +# curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | bash -s install deb-get +DEB_GET_PATH=/usr/local/bin/deb-get +echo "#!/bin/bash\ncurl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | bash -s" > $DEB_GET_PATH +chmod +x $DEB_GET_PATH