Skip to content

Commit

Permalink
Fix Chicken bits from #2023
Browse files Browse the repository at this point in the history
  • Loading branch information
politas committed May 28, 2017
1 parent 98e7da3 commit b40eb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Net/NetAsyncDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private void Download(ICollection<KeyValuePair<Uri, long>> urls)
}

// adding chicken bits
if (Platform.IsWindows || System.Environment.GetEnvironmentVariable("KSP_CKAN_USE_CURL") != null) {
if (Platform.IsWindows || System.Environment.GetEnvironmentVariable("KSP_CKAN_USE_CURL") == null) {
DownloadNative();
}
else
Expand Down

0 comments on commit b40eb97

Please sign in to comment.