Skip to content

Commit

Permalink
fix(exit): This fixes a regression which was introduced, we should se…
Browse files Browse the repository at this point in the history
…arch for contains otherwise the installer does not exit when warnings are detected. Closes #32

Signed-off-by: dark0dave <[email protected]>
  • Loading branch information
dark0dave committed Nov 25, 2023
1 parent 78066b0 commit bf32c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/weidu_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ fn string_looks_like_question(weidu_output: &str) -> bool {

fn detect_weidu_finished_state(weidu_output: &str) -> Option<State> {
let comparable_output = weidu_output.trim().to_lowercase();
if WEIDU_FAILED_WITH_ERROR.eq(&comparable_output) {
if comparable_output.contains(WEIDU_FAILED_WITH_ERROR) {
Some(State::CompletedWithErrors {
error_details: comparable_output,
})
} else if WEIDU_COMPLETED_WITH_WARNINGS.eq(&comparable_output) {
} else if comparable_output.contains(WEIDU_COMPLETED_WITH_WARNINGS) {
Some(State::CompletedWithWarnings)
} else {
None
Expand Down

0 comments on commit bf32c12

Please sign in to comment.