From cfa1af41c8a54f177c17bc87f992de66ae14df8b Mon Sep 17 00:00:00 2001 From: Andrejs Cunskis Date: Sun, 30 Oct 2022 20:23:33 +0200 Subject: [PATCH] Fix download url base --- scripts/install-chrome | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-chrome b/scripts/install-chrome index 357ac94..7ee5a55 100755 --- a/scripts/install-chrome +++ b/scripts/install-chrome @@ -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}" }