Skip to content

Commit f7172f4

Browse files
committed
Fix download retry
1 parent 06cb1c3 commit f7172f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vcpkg/base/downloads.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ namespace vcpkg
583583
{
584584
prognosis = perform_download(context, machine_readable_progress, raw_url, download_path_part_path, headers);
585585

586-
if (DownloadPrognosis::Success != prognosis)
586+
if (DownloadPrognosis::Success == prognosis)
587587
{
588588
break;
589589
}

0 commit comments

Comments
 (0)