Ejemplo n.º 1
0
def update_meta_makefile() -> None:
    """Update the meta Makefile if needed."""
    from batools.metamakefile import update
    update(projroot=str(PROJROOT), check='--check' in sys.argv)
Ejemplo n.º 2
0
def update_dummy_module() -> None:
    """Update our _ba dummy module."""
    from batools.dummymodule import update
    update(projroot=str(PROJROOT),
           check='--check' in sys.argv,
           force='--force' in sys.argv)
Ejemplo n.º 3
0
def update_resources_makefile() -> None:
    """Update the resources Makefile if needed."""
    from batools.resourcesmakefile import update
    update(projroot=str(PROJROOT), check='--check' in sys.argv)