Skip to content

Commit 5b9528a

Browse files
chore: fix logic error
1 parent 25c463d commit 5b9528a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ set -o xtrace
7676

7777
set +o errexit
7878
curl "${CURL_FLAGS[@]}" "${node_download_url}" --output "$node_archive_path"
79-
if [[ $? -ne 92 ]]; then exit 1; fi
79+
if [[ $? -eq 92 ]]; then exit 1; fi
8080
set -o errexit
8181

8282
if [[ "$file_extension" = "zip" ]]; then

0 commit comments

Comments
 (0)