@atercates/claude-deck 0.2.8 → 0.2.9
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 +1 -1
- package/scripts/install.sh +9 -2
package/package.json
CHANGED
package/scripts/install.sh
CHANGED
|
@@ -80,8 +80,15 @@ if ! command -v git &> /dev/null; then
|
|
|
80
80
|
fi
|
|
81
81
|
|
|
82
82
|
if ! command -v tmux &> /dev/null; then
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
log_warn "tmux is not installed (required for session management)"
|
|
84
|
+
ask "Install tmux now? (y/n)" "y" INSTALL_TMUX
|
|
85
|
+
if [[ "$INSTALL_TMUX" == "y" ]]; then
|
|
86
|
+
sudo apt install -y tmux
|
|
87
|
+
log_success "tmux installed"
|
|
88
|
+
else
|
|
89
|
+
log_error "tmux is required. Install it manually and re-run."
|
|
90
|
+
exit 1
|
|
91
|
+
fi
|
|
85
92
|
fi
|
|
86
93
|
|
|
87
94
|
# ─── Node.js ──────────────────────────────────────────────────────────────────
|