summaryrefslogtreecommitdiff
path: root/scripts/build-command-templates
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2020-01-14 09:18:16 -0600
committerGitHub <noreply@github.com>2020-01-14 09:18:16 -0600
commit29e3f990303c6d01c37f4fafc44d0d3cbcd4558e (patch)
tree2828d034d5ae467abbfb155015f40685d2518424 /scripts/build-command-templates
parent91de4ec9d95a6a99df0ad5363633251bcb5f4874 (diff)
parent29e438755c8bd2b9598a2016a3c42891f0cbfa1d (diff)
downloadvyos-1x-29e3f990303c6d01c37f4fafc44d0d3cbcd4558e.tar.gz
vyos-1x-29e3f990303c6d01c37f4fafc44d0d3cbcd4558e.zip
Merge pull request #205 from jestabro/syntax-version
Syntax version
Diffstat (limited to 'scripts/build-command-templates')
-rwxr-xr-xscripts/build-command-templates2
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])