Skip to content

Commit a1eb853

Browse files
author
dotfiles-bot
committed
feat: mejorar output de symlink para mostrar ruta completa del destino
Cambia mensaje de: Created: init.vim /path/to/source A: /home/user/.config/nvim/init.vim /path/to/source Facilita debugging mostrando HACIA DÓNDE se instala cada archivo.
1 parent 81b8955 commit a1eb853

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/dotfiles_installer/symlink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def create_symlink(self, source: Path, destination: Path, module_name: str,
116116
# Create symlink
117117
try:
118118
destination.symlink_to(source)
119-
print(f" ✓ Created: {destination.name}{source}")
119+
print(f" ✓ {destination}{source}")
120120
return True
121121
except OSError as e:
122122
print(f" ✗ Failed to create symlink {destination}: {e}")

0 commit comments

Comments
 (0)