From d02c7c76ac6aa6a98c35ec98de5ee0dce272184c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81s=20Sainz=20de=20Aja?= Date: Sat, 4 Jul 2026 12:51:45 +0200 Subject: [PATCH] feat(shell): create ~/projects/personal directory on setup # Current problem Nothing in setup creates ~/projects/personal, so a fresh machine needs it made manually before cloning personal projects there. # Proposed solution Add an idempotent mkdir -p for ~/projects/personal in shell.sh; safe to re-run and never overwrites existing content. --- scripts/shell.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/shell.sh b/scripts/shell.sh index 7fbb5d7..033289b 100755 --- a/scripts/shell.sh +++ b/scripts/shell.sh @@ -18,6 +18,8 @@ symlink() { echo "==> 🔗 Symlinking dotfiles, configs and scripts to ~/" +mkdir -p "$HOME/projects/personal" + # Symlink dotfiles e.g. dotfiles/.aliases to ~/.aliases for file in "$REPO_PATH"/dotfiles/.*; do if [ -f "$file" ]; then