fix: hyprland config globbing error (source=~), dotfiles deploy stabilität (cp -aT, set -e fix), homelab AGS setup form

This commit is contained in:
2026-05-30 19:56:57 +02:00
parent d367c4edd0
commit 1a06ffa0dc
6 changed files with 76 additions and 115 deletions

View File

@@ -100,9 +100,9 @@ copy_path() {
local target="$2"
backup_file "$target"
rm -rf "$target"
rm -rf "$target" 2>/dev/null || true
mkdir -p "$(dirname "$target")"
cp -a "$source" "$target"
cp -aT "$source" "$target"
log_info "Copied $source -> $target"
}