mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-26 06:43:31 +02:00
Merge pull request #2833 from juhenriquez/fix-builder-after-version-updates
Fix builder after app updates
This commit is contained in:
@@ -113,4 +113,3 @@ slug: bazarr_nas
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/bazarr
|
||||
version: "1.6.0"
|
||||
webui: "[PROTO:ssl]://[HOST]:[PORT:6767]"
|
||||
|
||||
@@ -111,4 +111,3 @@ slug: prowlarr
|
||||
udev: true
|
||||
url: https://github.com/alexbelgium/hassio-addons
|
||||
version: "nightly-2.5.1.5460-ls4"
|
||||
webui: "[PROTO:ssl]://[HOST]:[PORT:9696]"
|
||||
|
||||
@@ -52,7 +52,7 @@ RUN \
|
||||
&& echo 'WebUI\LocalHostAuth=false' >> /defaults/qBittorrent.conf \
|
||||
\
|
||||
# Add vuetorrent
|
||||
&& curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" >/dev/null \
|
||||
&& curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip >/dev/null \
|
||||
&& unzip -o vuetorrent.zip -d / >/dev/null \
|
||||
&& rm vuetorrent.zip >/dev/null
|
||||
|
||||
|
||||
@@ -198,7 +198,7 @@ if [ "$CUSTOMUI" = default ]; then
|
||||
sed -i '/AlternativeUIEnabled/d' qBittorrent.conf
|
||||
sed -i '/RootFolder/d' qBittorrent.conf
|
||||
# Update ingress webui
|
||||
curl -f -s -S -O -J -L "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null
|
||||
curl -f -s -S -O -J -L https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null
|
||||
unzip -o vuetorrent.zip -d / > /dev/null
|
||||
rm vuetorrent.zip
|
||||
fi
|
||||
@@ -211,7 +211,7 @@ if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$C
|
||||
### Download WebUI
|
||||
case $CUSTOMUI in
|
||||
"vuetorrent")
|
||||
curl -f -s -S -J -L -o /webui/release.zip "$(curl -f -s -L https://api.github.com/repos/WDaan/VueTorrent/releases/latest | grep -o "http.*vuetorrent.zip" | head -1)" > /dev/null
|
||||
curl -f -s -S -J -L -o /webui/release.zip https://github.com/VueTorrent/VueTorrent/releases/latest/download/vuetorrent.zip > /dev/null
|
||||
;;
|
||||
|
||||
"qbit-matUI")
|
||||
|
||||
Reference in New Issue
Block a user