Skip to content

Commit

Permalink
Add NCROSS to ALLOWED_ARGS (#418)
Browse files Browse the repository at this point in the history
Co-authored-by: Shamoni Maheshwari <[email protected]>
  • Loading branch information
shamoni and Shamoni Maheshwari authored Apr 12, 2024
1 parent 5b04ef6 commit 91cc553
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion enclone_ranger/src/main_enclone.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub fn main_enclone_ranger(args: &[String]) -> Result<(), String> {
"PROTO",
"REF",
];
const ALLOWED_ARGS: [&str; 16] = [
const ALLOWED_ARGS: [&str; 17] = [
"BCR",
"META",
"NOPRETTY",
Expand All @@ -50,6 +50,7 @@ pub fn main_enclone_ranger(args: &[String]) -> Result<(), String> {
"NDOUBLET",
"NSIG",
"SPLIT_MAX_CHAINS",
"NCROSS",
];
let mut found = [false; REQUIRED_ARGS.len()];
for arg in args.iter().skip(1) {
Expand Down

0 comments on commit 91cc553

Please sign in to comment.