feat: logging

This commit is contained in:
Jozef Steinhübl 2024-08-08 14:47:58 +02:00
parent 05c1191be2
commit 75d9369452
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F

View file

@ -15,9 +15,9 @@ def sync(stuff: list[str]):
if os.path.isdir(path):
os.makedirs(system_path, exist_ok=True)
else:
print(f"Copying {path} to {system_path}")
print(f":: Copying {path} to {system_path}")
if os.path.exists(system_path) and not overwrite:
print(f"Path {system_path} already exists. Do you want to overwrite it with {path}? y/n/a")
print(f":: Path {system_path} already exists. Do you want to overwrite it with {path}? y/n/a")
ask = input()
if ask not in ("y", "a"):