diff options
author | John Estabrook <jestabro@sentrium.io> | 2020-01-10 11:52:26 -0600 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2020-01-13 11:18:28 -0600 |
commit | 5849ba88a1a20e4d3584843e0be46e456c5f7980 (patch) | |
tree | 0908035159b1d5092db78eb36bd2cb80017258da /scripts/build-command-templates | |
parent | 4fa271c1d9e5011b25a18cf60c27d1017382eb7d (diff) | |
download | vyos-1x-5849ba88a1a20e4d3584843e0be46e456c5f7980.tar.gz vyos-1x-5849ba88a1a20e4d3584843e0be46e456c5f7980.zip |
xml: T1962: Add syntaxVersion to schema
Diffstat (limited to 'scripts/build-command-templates')
-rwxr-xr-x | scripts/build-command-templates | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build-command-templates b/scripts/build-command-templates index 4fcdb8ade..dbf4ad9c5 100755 --- a/scripts/build-command-templates +++ b/scripts/build-command-templates @@ -295,4 +295,6 @@ root = xml.getroot() nodes = root.iterfind("*") for n in nodes: + if n.tag == "syntaxVersion": + continue process_node(n, [output_dir]) |