-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The latest version of the patterndb schema fail validation if an ACTIONS tag has no ACTION tag in it. Ensure we do not produce such a tag when it is not needed. Fixes #3
- Loading branch information
Showing
2 changed files
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
<% if ! @actions.empty? -%> | ||
</actions> | ||
<% end -%> | ||
</rule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,4 +44,6 @@ | |
<% end -%> | ||
</examples> | ||
<% end -%> | ||
<% if ! @actions.empty? -%> | ||
<actions> | ||
<% end -%> |