Skip to content

Commit

Permalink
Fix/proxy password (#12)
Browse files Browse the repository at this point in the history
* fix: use provide proxy user and password if possible

* fix: just override var if proxy user and pw is present

* hotfix var usage
  • Loading branch information
patrickskowronekdkfz authored Nov 10, 2023
1 parent b388775 commit 4fcee00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ if [ ! -z $https_proxy ]; then
PORT="$(echo $HOSTPORT | sed -e 's,^.*:,:,g' -e 's,.*:\([0-9]*\).*,\1,g' -e 's,[^0-9],,g')"

if [ ! -z $HTTPS_PROXY_PASSWORD ]; then
PROXY_PASSWORD = $HTTPS_PROXY_PASSWORD
PROXY_USERNAME = $HTTPS_PROXY_USERNAME
PROXY_PASSWORD=$HTTPS_PROXY_PASSWORD
PROXY_USERNAME=$HTTPS_PROXY_USERNAME
fi


Expand Down

0 comments on commit 4fcee00

Please sign in to comment.