mirror of
https://github.com/justinian/j6-uefi-headers.git
synced 2025-12-10 08:34:31 -08:00
Remove include/ from header paths
Everything is under uefi, put that in the project root
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,2 @@
|
|||||||
include/uefi/protos/*
|
uefi/protos/*
|
||||||
tags
|
tags
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ from jinja2 import Environment, FileSystemLoader, Template
|
|||||||
template_path = join(dirname(__file__), "templates")
|
template_path = join(dirname(__file__), "templates")
|
||||||
env = Environment(loader=FileSystemLoader(template_path))
|
env = Environment(loader=FileSystemLoader(template_path))
|
||||||
|
|
||||||
protos_dir = join("include", "uefi", "protos")
|
protos_dir = join("uefi", "protos")
|
||||||
os.makedirs(protos_dir, exist_ok=True)
|
os.makedirs(protos_dir, exist_ok=True)
|
||||||
|
|
||||||
proto_template = env.get_template("proto.j2")
|
proto_template = env.get_template("proto.j2")
|
||||||
|
|||||||
Reference in New Issue
Block a user