From cda6a0414d455e3db46d3ce727c5d8c5030ecf08 Mon Sep 17 00:00:00 2001 From: Nianyu Shen Date: Wed, 27 Nov 2024 20:50:33 -0800 Subject: [PATCH] fix: accept cert without proxy Signed-off-by: Nianyu Shen --- earthly.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earthly.sh b/earthly.sh index d28c922..abcb8b6 100755 --- a/earthly.sh +++ b/earthly.sh @@ -115,7 +115,7 @@ if ! docker run --rm --privileged $ALPINE_IMG sh -c 'echo "Privileged container echo "Privileged containers are not allowed for the current user." exit 1 fi -if [ -z "$HTTP_PROXY" ] && [ -z "$HTTPS_PROXY"]; then +if [ -z "$HTTP_PROXY" ] && [ -z "$HTTPS_PROXY" ] && [ -z "$(find certs -type f ! -name '.*' -print -quit)" ]; then build_without_proxy "$@" else build_with_proxy "$@"