aboutsummaryrefslogtreecommitdiff
path: root/store
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2025-06-02 18:28:10 +0800
committercrupest <crupest@outlook.com>2025-06-02 18:28:10 +0800
commit7b697cf28c954456f697160db3eeffa5bf699297 (patch)
tree4977717809ac24a5e5f0865f0bd4176253b51443 /store
parent3701a54d1c71c166c18113d05a44ab7c932557b5 (diff)
downloadcrupest-7b697cf28c954456f697160db3eeffa5bf699297.tar.gz
crupest-7b697cf28c954456f697160db3eeffa5bf699297.tar.bz2
crupest-7b697cf28c954456f697160db3eeffa5bf699297.zip
feat(bashrc): make http(s)_proxy upper case.
Diffstat (limited to 'store')
-rw-r--r--store/home/bashrc6
1 files 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
}