Skip to content

Commit 2507d56

Browse files
Fix fibers download URL to use CloudFront
Use asana.biz CloudFront URL instead of direct S3 (public S3 access disabled) Co-Authored-By: Claude (global.anthropic.claude-opus-4-5-20251101-v1:0) <noreply@anthropic.com>
1 parent 99d2689 commit 2507d56

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

stage_for_s3.bash

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ for pattern in "${EXPECTED_FIBERS_BINARIES[@]}"; do
4949
done
5050

5151
echo ""
52-
echo "=== Downloading fibers package from S3 ==="
53-
curl --fail -sS "https://asana-oss-cache.s3.us-east-1.amazonaws.com/node-fibers/fibers-5.0.4.pc.tgz" --output fibers-5.0.4.tar.gz
52+
echo "=== Downloading fibers package via CloudFront ==="
53+
# Download fibers base package via CloudFront (public S3 access was disabled)
54+
curl --fail -sS "https://asana-oss-cache.asana.biz/node-fibers/fibers-5.0.4.pc.tgz" --output fibers-5.0.4.tar.gz
5455

5556
if [[ ! -f fibers-5.0.4.tar.gz ]]; then
5657
echo "ERROR: Failed to download fibers package from S3" >&2

0 commit comments

Comments
 (0)