Fix download url base

This commit is contained in:
Andrejs Cunskis 2022-10-30 20:23:33 +02:00
parent 22154087ee
commit cfa1af41c8
No known key found for this signature in database
GPG key ID: 87CB75083F227241

View file

@ -12,7 +12,7 @@ function download_deb() {
local DEB="${PKG}-${component}_${CHROME_VERSION}_${ARCH}.deb"
fi
curl --silent --show-error --fail -O "$DEB"
curl --silent --show-error --fail -O "${DOWNLOAD_URL_BASE}/${CHROME_VERSION}/$DEB"
echo "${DEB}"
}