Skip to content

Commit

Permalink
Fix bug in getting source bundle
Browse files Browse the repository at this point in the history
Left in type as just the default readme type instead of the
actual type of the source bundle
  • Loading branch information
mlieberman85 committed Mar 3, 2024
1 parent 6321c60 commit 50e81d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skootrs-lib/src/service/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ where
.collect::<HashMap<SourceFile, String>>();
Ok(InitializedFacet::SourceBundle(
skootrs_model::skootrs::facet::SourceBundleFacet {
facet_type: skootrs_model::skootrs::facet::SupportedFacetType::Readme,
facet_type: s.facet_type.clone(),
source_files: None,
source_files_content: Some(source_files_content_map),
},
Expand Down

0 comments on commit 50e81d8

Please sign in to comment.