Skip to content

Commit 0ae4e18

Browse files
Use workbench mirror for node and goofys (#254)
1 parent b78061c commit 0ae4e18

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

startupscript/aws/install-goofys.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ elif type apt-get > /dev/null 2>&1; then
2929
fi
3030

3131
# Download specific version
32-
curl -L "https://github.com/kahing/goofys/releases/download/${GOOFYS_VERSION}/goofys" -o goofys
32+
curl -L "https://storage.googleapis.com/bkt-workbench-artifacts/mirror/goofys-${GOOFYS_VERSION}" -o goofys
3333

3434
# Verify SHA256 hash
3535
SHA256_OUTPUT=$(sha256sum goofys)

startupscript/butane/001-install-node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -o xtrace
1313
readonly NODE_VERSION="v18.16.1"
1414
readonly PLATFORM="linux-x64"
1515
readonly NODE_TAR="node-${NODE_VERSION}-${PLATFORM}.tar.gz"
16-
readonly NODE_INSTALL_SRC="https://nodejs.org/dist/${NODE_VERSION}/${NODE_TAR}"
16+
readonly NODE_INSTALL_SRC="https://storage.googleapis.com/bkt-workbench-artifacts/mirror/${NODE_TAR}"
1717
readonly NODE_INSTALL_PATH="/home/core/${NODE_TAR}"
1818

1919
echo "Downloading Node from ${NODE_INSTALL_SRC}"

0 commit comments

Comments
 (0)