format init

This commit is contained in:
Marc Beninca 2024-06-12 14:40:39 +02:00
parent 2b78b45b1b
commit abd7afe65d
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -34,13 +34,19 @@ def cd_clone_branch() -> None:
split()
print(project, end="")
split()
print(f"""\
print(
f"""\
{project.url}
""", end="", flush=True)
ps.run("git",
""",
end="",
flush=True,
)
ps.run(
"git",
"clone",
"--branch", project.branch,
"--branch",
project.branch,
"--",
project.url,
project.root,
@ -60,7 +66,8 @@ def cd_synchronize() -> None:
root = Path(os.sep) / user / project.branch / projects.group / project.name
#
target = f"{user}@{host}:{root}"
ps.run("rsync",
ps.run(
"rsync",
"--archive",
"--delete-before",
"--verbose",