From c02aa02ed7dd44723e24580f1f27411af5da56ee Mon Sep 17 00:00:00 2001 From: Anne Ferger Date: Fri, 22 Dec 2023 13:37:12 +0100 Subject: [PATCH] Update required.sh --- required.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/required.sh b/required.sh index ee1c579..de188a9 100644 --- a/required.sh +++ b/required.sh @@ -1,12 +1,12 @@ #!/bin/bash # installs lilypond into ~/lilypond/usr - +echo $PATH #https://gitlab.com/lilypond/lilypond/-/releases/permalink/latest #https://gitlab.com/lilypond/lilypond/-/releases/v2.25.11/downloads/lilypond-2.25.11-linux-x86_64.tar.gz mkdir -p /opt/lilypond mkdir -p /tmp/lilypond -curl -L -o /tmp/lilypond.tar.gz https://gitlab.com/lilypond/lilypond/-/releases/v2.25.11/downloads/lilypond-2.25.11-linux-x86_64.tar.gz +#curl -L -o /tmp/lilypond.tar.gz https://gitlab.com/lilypond/lilypond/-/releases/v2.25.11/downloads/lilypond-2.25.11-linux-x86_64.tar.gz tar -xf /tmp/lilypond.tar.gz -C /tmp/lilypond mv /tmp/lilypond/*/* /opt/lilypond export PATH=$PATH:/opt/lilypond/bin