diff options
| author | sigoden <sigoden@gmail.com> | 2024-11-04 06:51:19 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-04 06:51:19 +0800 |
| commit | 2cac7d90c87c27534d69a9ac76baf7c528246713 (patch) | |
| tree | c2dbf2d7af2641035949d11d9193e28e51930046 | |
| parent | 3573a43978afbb519a8793a3cd70dd5ec14dcdfa (diff) | |
| download | llm-functions-docker-2cac7d90c87c27534d69a9ac76baf7c528246713.tar.gz | |
fix(scripts): don't build declarations for cmd startsWith (#121)
| -rwxr-xr-x | scripts/build-declarations.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-declarations.sh b/scripts/build-declarations.sh index 6ac2cf4..f01ad7d 100755 --- a/scripts/build-declarations.sh +++ b/scripts/build-declarations.sh @@ -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) ]' } |
