Improve renv logging and stow output

This commit is contained in:
MangoPig
2026-06-03 22:40:18 +01:00
parent 88817aa7d2
commit 2429eb3603
2 changed files with 47 additions and 2 deletions

View File

@@ -102,11 +102,19 @@ backup_conflicting_home_files() {
}
stow_dotfiles() {
echo "Preparing repo-managed secrets for stow..."
sync_repo_managed_secret_file
echo "Checking for conflicting home dotfiles before stow..."
backup_conflicting_home_files
echo "Cleaning existing Zsh stow links..."
stow --dir="$REPO_ROOT" -D Zsh --target="$HOME" 2>/dev/null || true
echo "Stowing Zsh dotfiles..."
stow --dir="$REPO_ROOT" Zsh --target="$HOME"
echo "Zsh dotfiles stowed."
}
bootstrap_only() {