@ghackk/multi-claude 1.0.13 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghackk/multi-claude",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Run multiple Claude CLI accounts with shared settings, plugins, marketplace sync, and backup/restore",
5
5
  "bin": {
6
6
  "multi-claude": "bin/claude-multi.js"
@@ -141,8 +141,8 @@ pick_account() {
141
141
  echo ""
142
142
  return
143
143
  fi
144
- echo ""
145
- echo -e " \033[90m(enter number)\033[0m"
144
+ echo "" >&2
145
+ echo -e " \033[90m(enter number)\033[0m" >&2
146
146
  read -p " $prompt: " choice
147
147
  local index=$((choice - 1))
148
148
  if [ "$index" -lt 0 ] 2>/dev/null || [ "$index" -ge "${#accounts[@]}" ] 2>/dev/null; then