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.
- package/VERSION +1 -1
- package/install.sh +6 -1
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.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
|
-
/
|
|
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)"
|