mirror of
https://github.com/danbee/mac-setup
synced 2025-03-04 08:39:10 +00:00
9 lines
170 B
Bash
Executable File
9 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! type brew > /dev/null; then
|
|
/usr/bin/ruby -e \
|
|
"$(curl \
|
|
-fsSL \
|
|
https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
fi
|