diff options
author | Daniel Baumann <daniel@debian.org> | 2010-11-02 00:35:52 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:28 +0100 |
commit | c43c932602442fc3ca4046ffd512e93d25f57131 (patch) | |
tree | 0773e8b770112a86b926477fc03b51a75b1a3685 | |
parent | 1faa31a45fa6264db3f079c003cfc7b189c9d744 (diff) | |
download | vyos-live-build-c43c932602442fc3ca4046ffd512e93d25f57131.tar.gz vyos-live-build-c43c932602442fc3ca4046ffd512e93d25f57131.zip |
Correcting typo in defaults handling of apt http proxy.
-rwxr-xr-x | functions/defaults.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index a5b9bdf0c..476723b32 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -57,7 +57,7 @@ Set_defaults () then LB_APT_HTTP_PROXY="${http_proxy}" else - if [ -n "${LB_APT_HTTP_PROXY}" ] && [ "${LB_APT_HTT_PROXY}" != "${http_proxy}" ] + if [ -n "${LB_APT_HTTP_PROXY}" ] && [ "${LB_APT_HTTP_PROXY}" != "${http_proxy}" ] then http_proxy="${LB_APT_HTTP_PROXY}" fi |