From 13e9829a850ae27258b7e05f54849a3d33371cdb Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 25 Mar 2025 11:01:42 +0100 Subject: [PATCH] fix detail Signed-off-by: Simon L. --- Containers/mastercontainer/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 1a455626..dff289d3 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -285,7 +285,7 @@ fi # Check if ghcr.io is reachable # Solves issues like https://github.com/nextcloud/all-in-one/discussions/5268 -if ! curl https://ghcr.io 2>&1; then +if ! curl https://ghcr.io &>/dev/null; then print_red "Could not reach https://ghcr.io." echo "Most likely is something blocking access to it." echo "You should be able to fix this by using https://github.com/nextcloud/all-in-one/tree/main/manual-install"