Files
MP-SPDZ/Scripts/get-brew.sh
2025-05-30 13:35:02 +10:00

14 lines
316 B
Bash
Executable File

#!/bin/bash
if ! type brew; then
echo Do you want me to install Homebrew?
echo Press RETURN to continue or any other key to abort
read ans
if test "$ans"; then
echo Aborting
exit 1
else
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
fi