mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-09 17:08:06 +01:00
23 lines
683 B
Python
23 lines
683 B
Python
from glob import glob
|
|
import shutil
|
|
import os
|
|
|
|
def dump(stuff: list[str]):
|
|
for pattern in stuff:
|
|
expand = os.path.expanduser(pattern)
|
|
|
|
for path in glob(expand, recursive=True):
|
|
normalized_path = path.removeprefix(os.path.expanduser("~/"))
|
|
if os.path.isdir(path):
|
|
if os.path.exists(normalized_path):
|
|
shutil.rmtree(normalized_path)
|
|
|
|
os.makedirs(normalized_path)
|
|
else:
|
|
dirname = os.path.dirname(normalized_path)
|
|
if dirname:
|
|
os.makedirs(dirname, exist_ok=True)
|
|
|
|
shutil.copy2(path, normalized_path)
|
|
|
|
exit(1)
|