Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Porges authored Oct 9, 2023
1 parent a1010b0 commit 31f31bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/dynamic-library/src/bin/dynamic-library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ fn main() -> Result<()> {
#[cfg(target_os = "linux")]
fn find_missing(cmd: Command) -> Result<(Vec<String>, Vec<String>)> {
let (missing, errors) = dynamic_library::linux::find_missing(cmd)?;
Ok((missing.drain().map(|m| m.name).collect(), errors))
Ok((missing.into_iter().map(|m| m.name).collect(), errors))
}

#[cfg(target_os = "windows")]
Expand Down

0 comments on commit 31f31bd

Please sign in to comment.