From b200a8e7b726bf41f5e11d8490a3c96064b3fb1f Mon Sep 17 00:00:00 2001 From: Nianyu Shen Date: Tue, 17 Oct 2023 08:19:18 -0700 Subject: [PATCH] fix typo --- earthly.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earthly.sh b/earthly.sh index f0c9471..883d29d 100755 --- a/earthly.sh +++ b/earthly.sh @@ -18,7 +18,7 @@ function build_with_proxy() { function build_without_proxy() { # Run Earthly in Docker to create artifacts Variables are passed from the .arg file - docker run --privileged -v /var/run/docker.sock:/var/run/docker.sock --rm --env EARTHLY_BUILD_ARGS -t -e GLOBAL_CONFIG="$global_config "-v "$(pwd)":/workspace gcr.io/spectro-images-public/earthly/earthly:$EARTHLY_VERSION --allow-privileged "$@" + docker run --privileged -v /var/run/docker.sock:/var/run/docker.sock --rm --env EARTHLY_BUILD_ARGS -t -e GLOBAL_CONFIG="$global_config" -v "$(pwd)":/workspace gcr.io/spectro-images-public/earthly/earthly:$EARTHLY_VERSION --allow-privileged "$@" } global_config="{disable_analytics: true}"