mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-10 19:05:09 +00:00
fix 5etools install
This commit is contained in:
parent
144182d22c
commit
a0baf1cecc
@ -38,6 +38,7 @@ msg_ok "Installed Node.js"
|
|||||||
|
|
||||||
# Setup App
|
# Setup App
|
||||||
msg_info "Set up 5etools Base"
|
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) }')
|
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"
|
wget -q "https://github.com/5etools-mirror-3/5etools-src/archive/refs/tags/${RELEASE}.zip"
|
||||||
unzip -q "${RELEASE}.zip"
|
unzip -q "${RELEASE}.zip"
|
||||||
@ -45,18 +46,16 @@ mv "5etools-src-${RELEASE:1}" /opt/5etools
|
|||||||
cd /opt/5etools
|
cd /opt/5etools
|
||||||
$STD npm install
|
$STD npm install
|
||||||
$STD npm run build
|
$STD npm run build
|
||||||
cd ~
|
|
||||||
echo "${RELEASE}" >"/opt/5etools_version.txt"
|
echo "${RELEASE}" >"/opt/5etools_version.txt"
|
||||||
rm "${RELEASE}.zip"
|
|
||||||
msg_ok "Set up 5etools Base"
|
msg_ok "Set up 5etools Base"
|
||||||
|
|
||||||
msg_info "Set up 5etools Image"
|
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) }')
|
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"
|
curl -sSL "https://github.com/5etools-mirror-2/5etools-img/archive/refs/tags/${IMG_RELEASE}.zip" > "${IMG_RELEASE}.zip"
|
||||||
unzip -q "${IMG_RELEASE}.zip"
|
unzip -q "${IMG_RELEASE}.zip"
|
||||||
mv "5etools-img-${IMG_RELEASE:1}" /opt/5etools/img
|
mv "5etools-img-${IMG_RELEASE:1}" /opt/5etools/img
|
||||||
echo "${IMG_RELEASE}" >"/opt/5etools_IMG_version.txt"
|
echo "${IMG_RELEASE}" >"/opt/5etools_IMG_version.txt"
|
||||||
rm "${IMG_RELEASE}.zip"
|
|
||||||
msg_ok "Set up 5etools Image"
|
msg_ok "Set up 5etools Image"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
@ -74,6 +73,8 @@ chmod -R 755 "/opt/5etools"
|
|||||||
msg_ok "Created Service"
|
msg_ok "Created Service"
|
||||||
|
|
||||||
msg_info "Cleaning up"
|
msg_info "Cleaning up"
|
||||||
|
rm -rf /opt/${IMG_RELEASE}.zip
|
||||||
|
rm -rf /opt/${RELEASE}.zip
|
||||||
$STD apt-get -y autoremove
|
$STD apt-get -y autoremove
|
||||||
$STD apt-get -y autoclean
|
$STD apt-get -y autoclean
|
||||||
msg_ok "Cleaned"
|
msg_ok "Cleaned"
|
||||||
|
Loading…
Reference in New Issue
Block a user