Dotfiles update 2025-12-25 14:09

This commit is contained in:
Aaron D. Lee
2025-12-25 14:09:03 -05:00
parent 0c804f1a0c
commit 4edbb164a8

View File

@@ -209,9 +209,10 @@ check_bin_scripts() {
else else
check_fail "$script not linked" check_fail "$script not linked"
if [[ "$DO_FIX" == true ]]; then if [[ "$DO_FIX" == true ]]; then
ln -s $DOTFILES_HOME/bin/$script "$HOME/.local/bin/$script" ln -s "$DOTFILES_HOME/bin/$script" "$HOME/.local/bin/$script"
chmod +x "$HOME/.local/bin/$script" chmod +x "$HOME/.local/bin/$script"
check_fixed "Created symlink & made executable: $script" check_fixed "Created symlink made executable: $script"
fi
fi fi
done done
} }