From a0baf1cecc3fbd450af3e668450d7412f1e20de2 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Sun, 5 Jan 2025 23:24:17 +0100 Subject: [PATCH] fix 5etools install --- install/5etools-install.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/install/5etools-install.sh b/install/5etools-install.sh index c1a3cd94..1e2da9c7 100644 --- a/install/5etools-install.sh +++ b/install/5etools-install.sh @@ -38,6 +38,7 @@ msg_ok "Installed Node.js" # Setup App msg_info "Set up 5etools Base" +cd /opt RELEASE=$(curl -s https://api.github.com/repos/5etools-mirror-3/5etools-src/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip" unzip -q "${RELEASE}.zip" @@ -45,18 +46,16 @@ mv "5etools-src-${RELEASE:1}" /opt/5etools cd /opt/5etools $STD npm install $STD npm run build -cd ~ echo "${RELEASE}" >"/opt/5etools_version.txt" -rm "${RELEASE}.zip" msg_ok "Set up 5etools Base" msg_info "Set up 5etools Image" +cd /opt IMG_RELEASE=$(curl -s https://api.github.com/repos/5etools-mirror-2/5etools-img/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') curl -sSL "https://github.com/5etools-mirror-2/5etools-img/archive/refs/tags/${IMG_RELEASE}.zip" > "${IMG_RELEASE}.zip" unzip -q "${IMG_RELEASE}.zip" mv "5etools-img-${IMG_RELEASE:1}" /opt/5etools/img echo "${IMG_RELEASE}" >"/opt/5etools_IMG_version.txt" -rm "${IMG_RELEASE}.zip" msg_ok "Set up 5etools Image" msg_info "Creating Service" @@ -74,6 +73,8 @@ chmod -R 755 "/opt/5etools" msg_ok "Created Service" msg_info "Cleaning up" +rm -rf /opt/${IMG_RELEASE}.zip +rm -rf /opt/${RELEASE}.zip $STD apt-get -y autoremove $STD apt-get -y autoclean msg_ok "Cleaned"