Source code for cgl.plugins.unreal.cli.perforce_pull

from cgl.core.utils.general import cgl_execute


[docs] def run(): """ Function to pull any changes from depot """ command = "p4 update" cgl_execute(command=command, new_window=True)
if __name__ == "__main__": run()