provision: Respect proxy settings when installing shellcheck+shfmt.

This commit is contained in:
Josh Klar 2022-12-07 23:27:33 -08:00 committed by Tim Abbott
parent 0c44b933c8
commit 0acb96ea9d
1 changed files with 2 additions and 2 deletions

View File

@ -424,9 +424,9 @@ def main(options: argparse.Namespace) -> NoReturn:
sys.exit(1)
# Install shellcheck.
run_as_root(["tools/setup/install-shellcheck"])
run_as_root([*proxy_env, "tools/setup/install-shellcheck"])
# Install shfmt.
run_as_root(["tools/setup/install-shfmt"])
run_as_root([*proxy_env, "tools/setup/install-shfmt"])
# Install transifex-cli.
run_as_root([*proxy_env, "tools/setup/install-transifex-cli"])