Fix some hardcoded values
Changed some hardcoded values so they can take values from env variables and made the old values into the default ones. Test plan: pass - set up build env containers Partial-Bug: 2101877 Change-Id: Ie59ae16ded26931e938a853f1d4fab4abfc4891f Signed-off-by: Leonardo Fagundes Luz Serrano <Leonardo.FagundesLuzSerrano@windriver.com>
This commit is contained in:
parent
60118ca4f3
commit
141e9933a3
@ -236,10 +236,10 @@ repo_url_to_sub_path () {
|
||||
return 0
|
||||
}
|
||||
|
||||
STX_MIRROR_PROTOCOL="https"
|
||||
STX_MIRROR_HOST="mirror.starlingx.windriver.com"
|
||||
STX_MIRROR_PORT="443"
|
||||
STX_MIRROR_URL_ROOT="mirror"
|
||||
STX_MIRROR_PROTOCOL="${STX_MIRROR_PROTOCOL:-https}"
|
||||
STX_MIRROR_HOST="${STX_MIRROR_HOST:-mirror.starlingx.windriver.com}"
|
||||
STX_MIRROR_PORT="${STX_MIRROR_PORT:-443}"
|
||||
STX_MIRROR_URL_ROOT="${STX_MIRROR_URL_ROOT:-mirror}"
|
||||
|
||||
url_to_stx_mirror_url () {
|
||||
local URL="$1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user