Skip to content

Commit 3eba985

Browse files
authored
Update Google distro URL (#4)
1 parent 92747b7 commit 3eba985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/compile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ VERSION="$(curl --silent --show-error --fail --retry 3 --retry-connrefused --con
6060
echo "Resolved $CHANNEL version $VERSION" | indent
6161

6262
echo "Downloading Chrome" | indent
63-
ZIP_URL="https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/$VERSION/linux64/chrome-linux64.zip"
63+
ZIP_URL="https://storage.googleapis.com/chrome-for-testing-public/$VERSION/linux64/chrome-linux64.zip"
6464
ZIP_LOCATION="$INSTALL_DIR/chrome.zip"
6565
curl --silent --show-error --fail --retry 3 --retry-connrefused --connect-timeout 10 -o "${ZIP_LOCATION}" "${ZIP_URL}" | indent
6666
unzip -q -j -o "$ZIP_LOCATION" -d "$BIN_DIR" | indent
6767
rm -f "$ZIP_LOCATION"
6868

6969
echo "Downloading Chromedriver" | indent
70-
ZIP_URL="https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/$VERSION/linux64/chromedriver-linux64.zip"
70+
ZIP_URL="https://storage.googleapis.com/chrome-for-testing-public/$VERSION/linux64/chromedriver-linux64.zip"
7171
ZIP_LOCATION="$INSTALL_DIR/chromedriver.zip"
7272
curl --silent --show-error --fail --retry 3 --retry-connrefused --connect-timeout 10 -o "${ZIP_LOCATION}" "${ZIP_URL}" | indent
7373
unzip -q -j -o "$ZIP_LOCATION" -d "$BIN_DIR" | indent

0 commit comments

Comments
 (0)