mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
12 lines
288 B
Python
12 lines
288 B
Python
![]() |
|
||
|
|
||
|
def tasks(tasklist, manifest):
|
||
|
from tasks import ConvertImage
|
||
|
tasklist.add(ConvertImage())
|
||
|
|
||
|
|
||
|
def validate_manifest(data, schema_validate):
|
||
|
from os import path
|
||
|
schema_path = path.normpath(path.join(path.dirname(__file__), 'manifest-schema.json'))
|
||
|
schema_validate(data, schema_path)
|