Auto doing fixes (#8)

This commit is contained in:
Geometrically
2023-06-02 16:13:00 -07:00
committed by GitHub
parent 3db00534c2
commit 6c628afe5d
4 changed files with 29 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "daedalus"
version = "0.1.21"
version = "0.1.22"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2018"
license = "MIT"

View File

@@ -332,7 +332,9 @@ pub fn merge_partial_library(
merge_downloads.artifact = Some(artifact);
}
if let Some(classifiers) = downloads.classifiers {
if let Some(merge_classifiers) = &mut merge_downloads.classifiers {
if let Some(merge_classifiers) =
&mut merge_downloads.classifiers
{
for classifier in classifiers {
merge_classifiers.insert(classifier.0, classifier.1);
}