mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-21 21:15:07 +00:00
fix: bash case-upper compat (tr instead of ^^)
This commit is contained in:
@@ -245,7 +245,8 @@ else
|
|||||||
SELECTION="A"
|
SELECTION="A"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "${SELECTION^^}" in
|
SELECTION_UPPER="$(echo "$SELECTION" | tr '[:lower:]' '[:upper:]')"
|
||||||
|
case "$SELECTION_UPPER" in
|
||||||
A|ALL)
|
A|ALL)
|
||||||
for i in "${!AGENT_IDS[@]}"; do
|
for i in "${!AGENT_IDS[@]}"; do
|
||||||
install_skill_to_workspace "${AGENT_WORKSPACES[$i]}"
|
install_skill_to_workspace "${AGENT_WORKSPACES[$i]}"
|
||||||
|
|||||||
Reference in New Issue
Block a user