Skip to content

Commit 14133d0

Browse files
committed
fix(build): Set EJS download to --noproxy to fix auth-server startup problem
1 parent 27d7ad5 commit 14133d0

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)