added build first workfile (probably for testing)

This commit is contained in:
iLLiCiTiT 2020-03-04 17:39:57 +01:00
parent 149a65f1e7
commit d38df643a8

View file

@ -1238,3 +1238,12 @@ def create_first_workfile(file_ext=None):
host.save_file(workfile_path)
return workfile_path
def build_first_workfile(file_ext=None):
# DEBUG this should probably be host specific
# Create workfile
workfile_path = create_first_workfile(file_ext)
# Load containers
loaded_containers = load_containers_for_workfile()
return (workfile_path, loaded_containers)