Browse Source

Prevent start script from failing on no hidden service file (#226)

ram-fix
Mayank Chhabra 4 years ago
committed by GitHub
parent
commit
95a0dd87b7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      scripts/start

4
scripts/start

@ -88,4 +88,6 @@ echo
echo "Umbrel is now accessible at"
echo " http://${DEVICE_HOSTNAME}.local"
echo " http://${DEVICE_IP}"
[[ ! -z "${hidden_service_url:-}" ]] && echo " http://${hidden_service_url}"
if [[ ! -z "${hidden_service_url:-}" ]]; then
echo " http://${hidden_service_url}"
fi

Loading…
Cancel
Save