@ghackk/multi-claude 1.0.18 → 1.0.19

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.18",
3
+ "version": "1.0.19",
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"
@@ -24,7 +24,7 @@ ensure_local_bin_on_path() {
24
24
  for rc in "$HOME/.bashrc" "$HOME/.zshrc" "$HOME/.profile"; do
25
25
  [ -f "$rc" ] || continue
26
26
  if ! grep -q '\.local/bin' "$rc" 2>/dev/null; then
27
- echo 'export PATH="$HOME/.local/bin:$PATH"' >> "$rc"
27
+ printf '\nexport PATH="$HOME/.local/bin:$PATH"\n' >> "$rc"
28
28
  fi
29
29
  done
30
30
  }