From 4390f309aee8dea8014714d3ef6539f40e10ebd3 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 2 Jun 2025 18:28:10 +0800 Subject: feat(bashrc): make http(s)_proxy upper case. --- store/home/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/store/home/bashrc b/store/home/bashrc index 7d31f23..1ab3b08 100644 --- a/store/home/bashrc +++ b/store/home/bashrc @@ -1,8 +1,8 @@ set-proxy() { - export http_proxy="http://127.0.0.1:7897" - export https_proxy="http://127.0.0.1:7897" + export HTTP_PROXY="http://127.0.0.1:7897" + export HTTPS_PROXY="http://127.0.0.1:7897" } unset-proxy() { - unset http_proxy https_proxy + unset HTTP_PROXY HTTPS_PROXY } -- cgit v1.2.3