Updated clean to also strip `=`

i18n
Michal 2 years ago committed by GitHub
parent 85451fbda9
commit 77d36f3b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,7 +3,7 @@ use regex::Regex;
use crate::{log, Options};
pub fn clean(a: &[String], options: Options) -> Vec<String> {
let r = Regex::new(r"(\S+)((?:>=|<=|>|<)\S+$)").unwrap();
let r = Regex::new(r"(\S+)((?:=|>=|<=|>|<)\S+$)").unwrap();
let mut cleaned: Vec<String> = vec![];
let verbosity = options.verbosity;

Loading…
Cancel
Save