aboutsummaryrefslogtreecommitdiff
path: root/dots.py
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-05-29 13:37:16 -0700
committerElizabeth <me@liz.coffee>2025-05-29 13:37:16 -0700
commitede675866355d34ac9fdc1b8e047576f574bdfa2 (patch)
tree2822551e4b3bc8c6fd65b6aa5cdb8a3a4dda255d /dots.py
parentea02ee5f0c6a977ba18d457175c23774690cfc38 (diff)
downloaddots-ede675866355d34ac9fdc1b8e047576f574bdfa2.tar.gz
dots-ede675866355d34ac9fdc1b8e047576f574bdfa2.zip
Add committer template
Diffstat (limited to 'dots.py')
-rwxr-xr-xdots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dots.py b/dots.py
index f94bcfe..ac4080e 100755
--- a/dots.py
+++ b/dots.py
@@ -155,7 +155,7 @@ def stow_dotfiles(source_dir: Path, target_dir: Path, env: Environment, clean: b
stow_cmd = ["-D"] if clean else ["--no-folding"]
for pkg in packages:
- env.logger.info(f"running stow for {pkg.name} ₰˜݆༿")
+ env.logger.info(f"running stow {stow_cmd} for {pkg.name} ₰˜݆༿")
run_shell_command(["stow", "-d", source_dir, "-t", target_dir, *stow_cmd, pkg.name])
return True