Skip to content

Commit 6a8c63d

Browse files
committed
Remove broken brew tap + gracefully fail brew bundle setup
1 parent 762776b commit 6a8c63d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

install.sh

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

3-
43
set -euo pipefail
54

65
project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
@@ -16,9 +15,8 @@ fi
1615
git submodule update --init --recursive --quiet
1716

1817
# Install the homebrew dependencies
19-
brew tap homebrew/bundle
20-
brew bundle --file="$project_dir/Brewfile.brews"
21-
brew bundle --file="$project_dir/Brewfile.casks"
18+
brew bundle --file="$project_dir/Brewfile.brews" || true
19+
brew bundle --file="$project_dir/Brewfile.casks" || true
2220

2321
# Link up the dot files
2422
"$project_dir/dotbot/bin/dotbot" -d "$project_dir" \

0 commit comments

Comments
 (0)