mirror of
https://github.com/vyos/vyos-build.git
synced 2025-10-01 20:28:40 +02:00
Merge pull request #276 from ssasso/fix_T4800
Fix T4800: wrong chroot_includes_dir var reference
This commit is contained in:
commit
77f4ba82f2
@ -412,7 +412,7 @@ if __name__ == "__main__":
|
|||||||
## Create includes
|
## Create includes
|
||||||
if has_nonempty_key(build_config, "includes_chroot"):
|
if has_nonempty_key(build_config, "includes_chroot"):
|
||||||
for i in build_config["includes_chroot"]:
|
for i in build_config["includes_chroot"]:
|
||||||
file_path = os.path.join(includes_chroot_dir, i["path"])
|
file_path = os.path.join(chroot_includes_dir, i["path"])
|
||||||
os.makedirs(os.path.dirname(file_path), exist_ok=True)
|
os.makedirs(os.path.dirname(file_path), exist_ok=True)
|
||||||
with open(file_path, 'w') as f:
|
with open(file_path, 'w') as f:
|
||||||
f.write(i["data"])
|
f.write(i["data"])
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user