From 326f9c5a1caecfad15f94cf6cfbd43860012e56b Mon Sep 17 00:00:00 2001 From: Joey Jiao Date: Mon, 2 Sep 2024 22:36:59 -0700 Subject: tools/syz-env: export https_proxy to docker in case behind proxy --- tools/syz-env | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/syz-env b/tools/syz-env index 27ec01a9d..30a1f8448 100755 --- a/tools/syz-env +++ b/tools/syz-env @@ -26,6 +26,7 @@ COMMAND="" DOCKERARGS=() +[ -n $https_proxy ] && DOCKERARGS+=" --env https_proxy=$https_proxy" for ARG in "$@"; do while IFS='=' read KEY VAL; do # If we have a kernel path passed in, we mount it in the container -- cgit mrf-deployment