We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dac3d72 + 6cd9c7e commit 2361271Copy full SHA for 2361271
scripts/update-base.sh
@@ -15,7 +15,9 @@ if [ "${BACKEND}" = "cbsd" ]; then
15
elif [ "${BACKEND}" = "base" ]; then
16
JAIL="${1}"
17
export PAGER=cat
18
- export HTTP_PROXY="${PKG_PROXY}"
+ if [ "${PKG_PROXY}" != "no" ]; then
19
+ export HTTP_PROXY="${PKG_PROXY}"
20
+ fi
21
if [ -z "${JAIL}" ]; then
22
cd "${BASE_WORKDIR}"
23
jls -N | egrep -v ' *JID' | awk '{print $1}' | while read jail_name; do
0 commit comments