Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
options: filter _module.args
Browse files Browse the repository at this point in the history
MarcelCoding committed Oct 14, 2024
1 parent 577e1e6 commit 73ef8ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ixx/src/action/index.rs
Original file line number Diff line number Diff line change
@@ -39,6 +39,10 @@ pub(crate) fn index(module: IndexModule) -> anyhow::Result<()> {
let options: HashMap<String, option::Option> = serde_json::from_reader(file)?;

for (name, option) in options {
if name == "_modules.args" {
continue;
}

let name = match &scope.options_prefix {
Some(prefix) => format!("{}.{}", prefix, name),
None => name,

0 comments on commit 73ef8ae

Please sign in to comment.