We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ee82a commit a8d1b18Copy full SHA for a8d1b18
setup/bootstrap.sh
@@ -31,7 +31,9 @@ directory="pytools"
31
32
if [ "$(uname -s)" = Darwin ]; then
33
echo "Bootstrapping Mac"
34
- curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install | ruby
+ if ! type brew >/dev/null 2>&1; then
35
+ curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install | ruby
36
+ fi
37
elif [ "$(uname -s)" = Linux ]; then
38
echo "Bootstrapping Linux"
39
if type apk >/dev/null 2>&1; then
0 commit comments