This commit is contained in:
despiegk 2024-01-08 11:24:30 +03:00
parent a47d80f783
commit 59af5cf854
Signed by: despiegk
GPG Key ID: 99E4E1492F73BC18
2 changed files with 4 additions and 2 deletions

View File

@ -3,7 +3,8 @@
### to install
```bash
/bin/bash -c "$(curl -fsSL https://git.ourworld.tf/freeflowuniverse/hero_bin_osx_arm/raw/branch/main/scripts/install.sh)"
curl -fsSL https://git.ourworld.tf/freeflowuniverse/hero_bin_osx_arm/raw/branch/main/scripts/install.sh > /tmp/install.sh
/bin/bash /tmp/install.sh
```
### in shell do following

View File

@ -14,7 +14,8 @@ if ! command -v git-lfs &> /dev/null; then
if ! command -v brew &> /dev/null; then
echo "Homebrew is not installed. Installing Homebrew..."
# Run the official Homebrew installation script
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
export NONINTERACTIVE=1
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
echo "Homebrew installed successfully."
fi