Skip to content

Commit

Permalink
fix(scripts): don't build declarations for cmd startsWith (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigoden authored Nov 3, 2024
1 parent 3573a43 commit 2cac7d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-declarations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ build_declarations() {
parameters: parse_parameter([.flag_options[] | select(.id != "help" and .id != "version")])
};
[
.[] | parse_declaration
.[] | parse_declaration | select(.name | startswith("_") | not)
]'
}

Expand Down

0 comments on commit 2cac7d9

Please sign in to comment.