claude-cac 1.4.4-beta.2 → 1.4.4

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.
Files changed (2) hide show
  1. package/cac +2 -2
  2. package/package.json +1 -1
package/cac CHANGED
@@ -11,7 +11,7 @@ VERSIONS_DIR="$CAC_DIR/versions"
11
11
  # ── utils: colors, read/write, UUID, proxy parsing ───────────────────────
12
12
 
13
13
  # shellcheck disable=SC2034 # used in build-concatenated cac script
14
- CAC_VERSION="1.4.4-beta.2"
14
+ CAC_VERSION="1.4.4"
15
15
 
16
16
  _read() { [[ -f "$1" ]] && tr -d '[:space:]' < "$1" || echo "${2:-}"; }
17
17
  _die() { printf '%b\n' "$(_red "error:") $*" >&2; exit 1; }
@@ -2381,7 +2381,7 @@ cmd_check() {
2381
2381
 
2382
2382
  # ── summary ──
2383
2383
  echo
2384
- if [[ ${#problems[@]:-0} -eq 0 ]]; then
2384
+ if [[ ${#problems[@]} -eq 0 ]]; then
2385
2385
  echo " $(_green "✓") all good"
2386
2386
  else
2387
2387
  for p in "${problems[@]}"; do
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-cac",
3
- "version": "1.4.4-beta.2",
3
+ "version": "1.4.4",
4
4
  "description": "Isolate, protect, and manage your Claude Code — versions, environments, identity, and proxy.",
5
5
  "bin": {
6
6
  "cac": "cac"