diff options
author | Daniel Baumann <daniel@debian.org> | 2010-11-02 00:35:38 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2010-11-02 00:35:38 +0100 |
commit | c4eb3897b1ffdf271c1776f4d174440371ac29dc (patch) | |
tree | 06bb0760b90520f806532a9661c9408441d7a4e4 | |
parent | ccca29902b928586894a752a4c5f2ed5d92b6730 (diff) | |
download | vyos-live-build-c4eb3897b1ffdf271c1776f4d174440371ac29dc.tar.gz vyos-live-build-c4eb3897b1ffdf271c1776f4d174440371ac29dc.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 c6e94f3d4..0a1da1fac 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 |