Browse Source
Prevent start script from failing on no hidden service file (#226)
ram-fix
Mayank Chhabra
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
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 |
|
|
|