Skip to content

Commit

Permalink
fix: no proxy option
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Jul 4, 2023
1 parent f897f97 commit 17985b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,6 @@ def _wget_install(self, executables: Iterable[WgetExecutable]) -> None:
if self.config.proxies["https"]:
wget_cmd += ["-e", f"https_proxy={self.config.proxies['https']}"]
if self.config.proxies["no_proxy"]:
wget_cmd += ["-e", f"https_proxy={self.config.proxies['no_proxy']}"]
wget_cmd += ["-e", f"no_proxy={self.config.proxies['no_proxy']}"]
self.instance.execute(wget_cmd)
self.instance.execute(["/usr/bin/chmod", "+x", executable_path])

0 comments on commit 17985b8

Please sign in to comment.