Skip to content

Commit

Permalink
Allowing beats output files to be generated with --include and --subs…
Browse files Browse the repository at this point in the history
…et (#814)

* Allowing beats output files to be generated when using the include and subset flags

* Updating changelog
  • Loading branch information
jonathan-buttner authored Apr 15, 2020
1 parent 515305e commit 9496824
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Thanks, you're awesome :-) -->
slightly different results in different situations. #782
* Fix incorrect listing of where field sets are nested in asciidoc,
when they are nested deep. #784
* Allow beats output to be generated when using `--include` or `--subset` flags. #814

#### Added

Expand Down
2 changes: 1 addition & 1 deletion scripts/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ def main():

csv_generator.generate(flat, ecs_version, out_dir)
es_template.generate(flat, ecs_version, out_dir)
beats.generate(nested, ecs_version, out_dir)
if args.include or args.subset:
exit()
beats.generate(nested, ecs_version, out_dir)
asciidoc_fields.generate(intermediate_fields, ecs_version, docs_dir)


Expand Down

0 comments on commit 9496824

Please sign in to comment.