Skip to content

Commit

Permalink
fix: 馃悰 fixed bones intersection operator
Browse files Browse the repository at this point in the history
  • Loading branch information
arctic-hen7 committed Jul 7, 2021
1 parent b193e19 commit 49cabaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bones.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ impl BonesOperator {
for operator in operators {
let op_matches = operator.matches(exit_code);
// We only need one of them to be false (aka. all of them have to be true)
is_match = op_matches;
if !op_matches {
is_match = false;
break;
}
}
Expand Down

0 comments on commit 49cabaf

Please sign in to comment.