Skip to content

Commit 25c463d

Browse files
add hopeful workaround
1 parent caf169b commit 25c463d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.evergreen/install-dependencies.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ echo "Node.js ${node_index_version} for ${operating_system}-${architecture} rele
7474

7575
set -o xtrace
7676

77+
set +o errexit
7778
curl "${CURL_FLAGS[@]}" "${node_download_url}" --output "$node_archive_path"
79+
if [[ $? -ne 92 ]]; then exit 1; fi
80+
set -o errexit
7881

7982
if [[ "$file_extension" = "zip" ]]; then
8083
unzip -q "$node_archive_path" -d "${NODE_ARTIFACTS_PATH}"

0 commit comments

Comments
 (0)