From 7f21303d033ab6858431f5dca8cc7565b74267b4 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Mon, 11 Sep 2023 14:05:19 +0200 Subject: [PATCH] fix: noarch is the only channel that must exist (#333) --- src/repodata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repodata.rs b/src/repodata.rs index 30ce82b99..26eea1c14 100644 --- a/src/repodata.rs +++ b/src/repodata.rs @@ -74,7 +74,7 @@ pub async fn fetch_sparse_repodata( &repodata_cache, download_client, progress_bar.clone(), - platform == Platform::NoArch, + platform != Platform::NoArch, ) .await;