Skip to content

Commit

Permalink
Merge pull request #3 from somasm-dev/soma
Browse files Browse the repository at this point in the history
Added support for 'mountlate'
  • Loading branch information
ydnath authored Mar 13, 2020
2 parents facf081 + ca5b280 commit 5c7e3a4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jet/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def required(d, k):
"schema": project_yaml.get("schema", False),
"config-validate": project_yaml.get("config-validate", False),
"veriexec-ext": project_yaml.get("veriexec-ext", False),
"mountlate": project_yaml.get("mountlate", False),
}
project_yaml_files = required(project_yaml, "files")
for file in project_yaml_files:
Expand Down Expand Up @@ -203,7 +204,7 @@ def package_xml_file(filename):
etree.SubElement(package_xml, "sb-location").text = "JetEZ"

# XMLPKG_TOGGLE_LIST
for p in ("schema", "config-validate", "veriexec-ext"):
for p in ("schema", "config-validate", "veriexec-ext", "mountlate"):
if project[p]:
etree.SubElement(package_xml, p)

Expand Down

0 comments on commit 5c7e3a4

Please sign in to comment.