Unverified Commit 502eea1b authored by Marius Göcke's avatar Marius Göcke
Browse files

update in script

parent e5c7c1fd
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
from pathlib import Path
import os
from ScriptCollection.GeneralUtilities import GeneralUtilities
from ScriptCollection.TasksForCommonProjectStructure import TasksForCommonProjectStructure
from ScriptCollection.TFCPS.Docker.TFCPS_CodeUnitSpecific_Docker import TFCPS_CodeUnitSpecific_Docker_Functions,TFCPS_CodeUnitSpecific_Docker_CLI


def update_dependencies():
    current_file = str(Path(__file__).absolute())
    codeunit_folder = GeneralUtilities.resolve_relative_path("../..", current_file)
    TasksForCommonProjectStructure().update_images_in_example(codeunit_folder)
def common_tasks():
    tf:TFCPS_CodeUnitSpecific_Docker_Functions=TFCPS_CodeUnitSpecific_Docker_CLI.parse(__file__)
    tf.update_dependencies()


if __name__ == "__main__":
    update_dependencies()
    common_tasks()