mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
22d6ab84f0
- The proxy plugin would create broken environment variables if it was enabled but proxy_host was not defined.
6 lines
105 B
Fish
6 lines
105 B
Fish
# Initial proxy setup (no username/password)
|
|
if set -q proxy_host
|
|
_proxy_set "http://$proxy_host"
|
|
end
|
|
|