From d237fcfcd3a931855e7281b9c45375a825f5302b Mon Sep 17 00:00:00 2001 From: Brydon DeWitt Date: Sun, 7 Jun 2026 19:17:56 -0400 Subject: [PATCH] fix: move install.sh to root --- .agents/install.sh => install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .agents/install.sh => install.sh (98%) diff --git a/.agents/install.sh b/install.sh similarity index 98% rename from .agents/install.sh rename to install.sh index a4a2f61..5346e09 100755 --- a/.agents/install.sh +++ b/install.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash -# install.sh — Wire ~/dotfiles/.agents/ into global tool configs. +# install.sh — Wire ~/dotfiles/.agents/ into global tool configs. (Script lives at repo root.) # Idempotent: safe to re-run. Creates dirs, symlinks, and config entries. # Run once per machine after cloning dotfiles. set -euo pipefail -DOTFILES_AGENTS="$(cd "$(dirname "$0")" && pwd)" +DOTFILES_AGENTS="$(cd "$(dirname "$0")" && pwd)/.agents" log() { printf '\033[0;32m✓\033[0m %s\n' "$1"; } warn() { printf '\033[0;33m⚠\033[0m %s\n' "$1"; }