Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas La Piana committed Jul 31, 2024
1 parent a9191e6 commit 65d9a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/execution/model_injection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pub fn inject_task_metadata(tasks: Vec<models::Task>, file_path: &str) -> Vec<mo
task.file_path = Some(file_path.to_owned());

if task.description.is_none() {
task.description = task.command.to_owned()
task.command.clone_into(&mut task.description)
}
task
})
Expand Down

0 comments on commit 65d9a4e

Please sign in to comment.