From 40622a84ca2c7c691b57a502d18bdef8474edd2b Mon Sep 17 00:00:00 2001 From: dissimulo Date: Tue, 25 Aug 2026 12:31:48 -0700 Subject: [PATCH] Remove symlinks pointing at files deleted upstream years ago .aprc, .escaped_colors.rb and .unescaped_colors.rb were tracked at the repo root as symlinks (mode 120000) to .yadr/irb/. Two things were wrong: - Those targets were deleted upstream in 9aac908 (Colorized irb prompt). Only irb/pryrc survives, so the links could never resolve. - The target path is relative to the link's own directory, so from inside the repo they resolved to ~/.yadr/.yadr/irb/... They only ever made sense sitting in $HOME, not committed into the repo root. install.sh was still deploying five dead entries: those three plus .editrc and .inputrc, which belonged to vimify and went away with it. A re-bootstrap would have recreated all five as dangling links. The matching broken links in /root and /home/dissimulo are removed too, along with .steampath, which pointed at a steam binary that is not in .steam/sdk32 (Steam recreates it on launch). --- .aprc | 1 - .escaped_colors.rb | 1 - .unescaped_colors.rb | 1 - install.sh | 4 ++-- 4 files changed, 2 insertions(+), 5 deletions(-) delete mode 120000 .aprc delete mode 120000 .escaped_colors.rb delete mode 120000 .unescaped_colors.rb diff --git a/.aprc b/.aprc deleted file mode 120000 index a2e5a93..0000000 --- a/.aprc +++ /dev/null @@ -1 +0,0 @@ -.yadr/irb/aprc \ No newline at end of file diff --git a/.escaped_colors.rb b/.escaped_colors.rb deleted file mode 120000 index cbe9a0f..0000000 --- a/.escaped_colors.rb +++ /dev/null @@ -1 +0,0 @@ -.yadr/irb/escaped_colors.rb \ No newline at end of file diff --git a/.unescaped_colors.rb b/.unescaped_colors.rb deleted file mode 120000 index 065e13f..0000000 --- a/.unescaped_colors.rb +++ /dev/null @@ -1 +0,0 @@ -.yadr/irb/unescaped_colors.rb \ No newline at end of file diff --git a/install.sh b/install.sh index 5cd6fa9..e830bda 100755 --- a/install.sh +++ b/install.sh @@ -25,8 +25,8 @@ PERSONAL_FILES=( .zshenv.backup .zshrc.backup # Relative symlinks into .yadr/... — YADR's rake install creates equivalents, # but we deploy these too so things work even if rake install is skipped. - .aprc .ctags .editrc .escaped_colors.rb .gemrc .gitconfig .inputrc .pryrc - .rdebugrc .unescaped_colors.rb .zlogin .zlogout .zpreztorc + .ctags .gemrc .gitconfig .pryrc + .rdebugrc .zlogin .zlogout .zpreztorc .zprofile .zshenv .zshrc )