mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-29 16:23:32 +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
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons/tree/master/bazarr
|
url: https://github.com/alexbelgium/hassio-addons/tree/master/bazarr
|
||||||
version: "1.6.0"
|
version: "1.6.0"
|
||||||
webui: "[PROTO:ssl]://[HOST]:[PORT:6767]"
|
|
||||||
|
|||||||
@@ -111,4 +111,3 @@ slug: prowlarr
|
|||||||
udev: true
|
udev: true
|
||||||
url: https://github.com/alexbelgium/hassio-addons
|
url: https://github.com/alexbelgium/hassio-addons
|
||||||
version: "nightly-2.5.1.5460-ls4"
|
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 \
|
&& echo 'WebUI\LocalHostAuth=false' >> /defaults/qBittorrent.conf \
|
||||||
\
|
\
|
||||||
# Add vuetorrent
|
# 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 \
|
&& unzip -o vuetorrent.zip -d / >/dev/null \
|
||||||
&& rm vuetorrent.zip >/dev/null
|
&& rm vuetorrent.zip >/dev/null
|
||||||
|
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ if [ "$CUSTOMUI" = default ]; then
|
|||||||
sed -i '/AlternativeUIEnabled/d' qBittorrent.conf
|
sed -i '/AlternativeUIEnabled/d' qBittorrent.conf
|
||||||
sed -i '/RootFolder/d' qBittorrent.conf
|
sed -i '/RootFolder/d' qBittorrent.conf
|
||||||
# Update ingress webui
|
# 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
|
unzip -o vuetorrent.zip -d / > /dev/null
|
||||||
rm vuetorrent.zip
|
rm vuetorrent.zip
|
||||||
fi
|
fi
|
||||||
@@ -211,7 +211,7 @@ if bashio::config.has_value 'customUI' && [ ! "$CUSTOMUI" = default ] && [ ! "$C
|
|||||||
### Download WebUI
|
### Download WebUI
|
||||||
case $CUSTOMUI in
|
case $CUSTOMUI in
|
||||||
"vuetorrent")
|
"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")
|
"qbit-matUI")
|
||||||
|
|||||||
Reference in New Issue
Block a user