From a50c50fb52bad19f81e76fa5a281811e775974bf Mon Sep 17 00:00:00 2001 From: Alex Macocian Date: Mon, 11 Nov 2024 15:51:23 +0100 Subject: [PATCH] Fix installer --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 86114d0..016b14c 100644 --- a/install.sh +++ b/install.sh @@ -25,6 +25,9 @@ download_url=$(echo "$response" | jq -r '.assets[] | select(.name == "linux-stat if [ -n "$download_url" ]; then echo "Downloading linux-static.tar.gz from the latest release..." curl -L "$download_url" -o /tmp/linux-static.tar.gz + + echo "Creating server folder" + mkdir -p /starbound/server echo "Extracting linux-static.tar.gz ..." tar -xzf /tmp/linux-static.tar.gz -C /starbound/server