Skip to content

Commit 064f0cb

Browse files
authored
Merge pull request #20365 from mozilla/fix-startup-issue
fix(build): Set EJS download to --noproxy to fix auth-server startup problem
2 parents 54ec33b + 14133d0 commit 064f0cb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/fxa-auth-server/scripts/install-ejs.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ ejs_version=3.1.10
1414
[ ! -d "./vendor" ] && mkdir vendor
1515

1616
# Download it from github
17-
curl -L https://github.com/mde/ejs/releases/download/v$ejs_version/ejs.min.js -o ./vendor/ejs.js
17+
# Use --noproxy to avoid yarn/npm proxy env vars causing 504 gateway timeouts
18+
curl -fL --noproxy '*' https://github.com/mde/ejs/releases/download/v$ejs_version/ejs.min.js -o ./vendor/ejs.js

0 commit comments

Comments
 (0)