Skip to content

Commit

Permalink
fix: warning for brew (#958)
Browse files Browse the repository at this point in the history
  • Loading branch information
castrojo authored Feb 28, 2024
1 parent bf87d1d commit 5623b19
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,19 @@ bluefin-cli:
# Install Homebrew | https://brew.sh
brew:
#!/usr/bin/env bash
source /usr/lib/ujust/ujust.sh
if [[ ! -f "/var/home/linuxbrew/.linuxbrew/bin" || ! -x "/var/home/linuxbrew/.linuxbrew/bin/brew" ]]; then
/usr/bin/bash -c '/usr/libexec/brew-install'
echo "${b}Brew Installation${n}"
echo "Please ${b}IGNORE${n} everything the installer tells you to do"
echo "We have already done it for you! You just need to close and re-open the terminal after installation"
echo "Do you understand?"
echo "Please type in \"YES I UNDERSTAND\" and press enter"
read ACCEPT
if [ "$ACCEPT" == "YES I UNDERSTAND" ]; then
/usr/bin/bash -c '/usr/libexec/brew-install'
else
echo "Capitalization matters when you type \"YES I UNDERSTAND\""
fi
fi

# Install "fleek" set of packages for brew | none, low, default, high
Expand Down

0 comments on commit 5623b19

Please sign in to comment.