mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 05:27:56 -05:00
14 lines
316 B
Bash
Executable File
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
|