From 0c804f1a0c9c115baad078bac9d73a234f2bb9d0 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Thu, 25 Dec 2025 14:06:29 -0500 Subject: [PATCH] Dotfiles update 2025-12-25 14:06 --- bin/dotfiles-doctor.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/dotfiles-doctor.sh b/bin/dotfiles-doctor.sh index d8e7ea5..7cf29aa 100755 --- a/bin/dotfiles-doctor.sh +++ b/bin/dotfiles-doctor.sh @@ -208,6 +208,10 @@ check_bin_scripts() { fi else check_fail "$script not linked" + if [[ "$DO_FIX" == true ]]; then + ln -s $DOTFILES_HOME/bin/$script "$HOME/.local/bin/$script" + chmod +x "$HOME/.local/bin/$script" + check_fixed "Created symlink & made executable: $script" fi done }