We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf169b commit 25c463dCopy full SHA for 25c463d
.evergreen/install-dependencies.sh
@@ -74,7 +74,10 @@ echo "Node.js ${node_index_version} for ${operating_system}-${architecture} rele
74
75
set -o xtrace
76
77
+set +o errexit
78
curl "${CURL_FLAGS[@]}" "${node_download_url}" --output "$node_archive_path"
79
+if [[ $? -ne 92 ]]; then exit 1; fi
80
+set -o errexit
81
82
if [[ "$file_extension" = "zip" ]]; then
83
unzip -q "$node_archive_path" -d "${NODE_ARTIFACTS_PATH}"
0 commit comments