Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/8c619bcf7f1b4cba7ca7ef53dc89735fbaeb3cd0?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update zigbee2mqtt-install.sh

pull/606/head
tteckster 3 years ago committed by GitHub
parent 5d47b17d40
commit 8c619bcf7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -86,11 +86,22 @@ apt-get install -y nodejs &>/dev/null
msg_ok "Installed Node.js"
msg_info "Setting up Zigbee2MQTT Repository"
sudo git clone --depth 1 https://github.com/Koenkk/zigbee2mqtt.git /opt/zigbee2mqtt &>/dev/null
git clone https://github.com/Koenkk/zigbee2mqtt.git /opt/zigbee2mqtt &>/dev/null
msg_ok "Set up Zigbee2MQTT Repository"
read -r -p "Switch to Edge/dev branch? (y/N) " prompt
if [[ $prompt == "y" ]]
then
DEV="y"
else
DEV="n"
fi
msg_info "Installing Zigbee2MQTT"
cd /opt/zigbee2mqtt &>/dev/null
if [[ $DEV == "y" ]]; then
git checkout dev &>/dev/null
fi
npm ci &>/dev/null
msg_ok "Installed Zigbee2MQTT"

Loading…
Cancel
Save

Powered by BW's shoe-string budget.