Skip to content

Commit feecf58

Browse files
Fix Source/Fn/Binary/Command/Sequential.rs: Group usage logic
1 parent fc59b36 commit feecf58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Fn/Binary/Command/Sequential.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub async fn Fn(Option { Entry, Pattern, Separator, .. }:Option) {
5151
.map(|Entry| {
5252
async move {
5353
match crate::Fn::Build::Fn(&Entry).await {
54-
Ok(Build) => Ok((Entry, Build)),
54+
Ok(Build) => Ok((Entry, format!("{:?}", Build))),
5555

5656
Err(_Error) => Err(format!("Error generating summary for {}: {}", Entry, _Error)),
5757
}

0 commit comments

Comments
 (0)