Skip to content

Commit 7972405

Browse files
committed
add homebrew install
1 parent 6b67498 commit 7972405

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

darwin/setup.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/bin/bash
22

3+
homebrew_path="/opt/homebrew"
4+
if [ ! -d $homebrew_path ]; then
5+
mkdir $homebrew_path
6+
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip-components 1 -C $homebrew_path
7+
fi
8+
39
brew bundle --file darwin/Brewfile
410

511
# Reset application attributes to allow run

0 commit comments

Comments
 (0)