Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed May 1, 2024
1 parent b2c49c5 commit 90cd5e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/package/management.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ impl DependencyManager {

if read_toml.library.is_none() {
// error we expected a library here
return Err(LingoError::NoLibraryInLingoToml(library_path.display().to_string()).into());
return Err(
LingoError::NoLibraryInLingoToml(library_path.display().to_string()).into(),
);
}

if !package.version.matches(&read_toml.package.version) {
Expand Down

0 comments on commit 90cd5e7

Please sign in to comment.