Add academic division to convert.sh and install.sh directory loops

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Michael Sitarzewski 2026-03-15 15:31:22 -05:00
parent c7806626cd
commit 14cd42972c
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ OUT_DIR="$REPO_ROOT/integrations"
TODAY="$(date +%Y-%m-%d)"
AGENT_DIRS=(
design engineering game-development marketing paid-media sales product project-management
academic design engineering game-development marketing paid-media sales product project-management
testing support spatial-computing specialized
)

View File

@ -298,7 +298,7 @@ install_claude_code() {
local count=0
mkdir -p "$dest"
local dir f first_line
for dir in design engineering game-development marketing paid-media sales product project-management \
for dir in academic design engineering game-development marketing paid-media sales product project-management \
testing support spatial-computing specialized; do
[[ -d "$REPO_ROOT/$dir" ]] || continue
while IFS= read -r -d '' f; do
@ -317,7 +317,7 @@ install_copilot() {
local count=0
mkdir -p "$dest_github" "$dest_copilot"
local dir f first_line
for dir in design engineering game-development marketing paid-media sales product project-management \
for dir in academic design engineering game-development marketing paid-media sales product project-management \
testing support spatial-computing specialized; do
[[ -d "$REPO_ROOT/$dir" ]] || continue
while IFS= read -r -d '' f; do