batipanel 0.4.4 → 0.4.5

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 (3) hide show
  1. package/VERSION +1 -1
  2. package/install.sh +6 -1
  3. package/package.json +1 -1
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.4
1
+ 0.4.5
package/install.sh CHANGED
@@ -31,7 +31,12 @@ if [ "$OS" = "Darwin" ] && ! has_cmd brew; then
31
31
  echo "Homebrew is not installed (required for macOS package management)."
32
32
  echo "Installing Homebrew..."
33
33
  echo ""
34
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
34
+ # use /dev/tty for interactive Homebrew installer (supports curl|bash)
35
+ if [ -e /dev/tty ]; then
36
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" </dev/tty
37
+ else
38
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
39
+ fi
35
40
  # add to PATH for this session (Apple Silicon vs Intel)
36
41
  if [ -f /opt/homebrew/bin/brew ]; then
37
42
  eval "$(/opt/homebrew/bin/brew shellenv)"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "batipanel",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "AI-powered terminal workspace manager — multi-panel tmux layouts with Claude Code, git, monitoring, and more",
5
5
  "bin": {
6
6
  "batipanel": "./bin/cli.sh"