jinja templates support

This commit is contained in:
2021-03-08 15:47:05 +03:00
parent 026c896fb7
commit b3345c4184
8 changed files with 85 additions and 23 deletions

View File

@ -37,3 +37,7 @@ def check_output(*args: str, exception: Optional[Exception],
logger.debug(line)
raise exception or e
return result
def package_like(filename: str) -> bool:
return '.pkg.' in filename and not filename.endswith('.sig')