Skip to content

Commit

Permalink
fix: exit when parsing package.json fails (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuiiBz authored Nov 18, 2024
1 parent 73dcfc4 commit d648499
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/collect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ pub fn collect_packages(args: &Args) -> Result<PackagesList> {
));
} else {
print_error("Failed to collect package", &error.to_string());
std::process::exit(1);
}
}
};
Expand Down

0 comments on commit d648499

Please sign in to comment.