ALBS-226: Patch pungi/lorax for building AL9

- Defaults modules can be empty, but pungi detects
  empty folder while copying and raises the exception in this case
This commit is contained in:
soksanichenko 2022-03-18 22:37:57 +02:00
parent 0484426e0c
commit 88121619bc
1 changed files with 3 additions and 0 deletions

View File

@ -65,6 +65,9 @@ def collect_modules(modules_paths: List[BinaryIO], target_dir: str):
module_defaults_path = os.path.join(target_dir, 'module_defaults')
os.makedirs(modules_path, exist_ok=True)
os.makedirs(module_defaults_path, exist_ok=True)
# Defaults modules can be empty, but pungi detects
# empty folder while copying and raises the exception in this case
Path(os.path.join(module_defaults_path, '.empty')).touch()
for module_file in modules_paths:
data = module_file.read()