mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-16 05:49:59 -05:00
fix: deployer place dir docstring
This commit is contained in:
@@ -15,7 +15,7 @@ class Deployer:
|
|||||||
self.place_file(src, dest)
|
self.place_file(src, dest)
|
||||||
|
|
||||||
def place_dir(self, src: Path, dest: Path) -> None:
|
def place_dir(self, src: Path, dest: Path) -> None:
|
||||||
"""Place a directory tree recursively, replacing any existing dest."""
|
"""Place a directory tree recursively, overwriting any existing dest files."""
|
||||||
|
|
||||||
if dest.is_symlink() or dest.is_file():
|
if dest.is_symlink() or dest.is_file():
|
||||||
self.remove(dest)
|
self.remove(dest)
|
||||||
|
|||||||
Reference in New Issue
Block a user