We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 762776b commit 6a8c63dCopy full SHA for 6a8c63d
install.sh
@@ -1,6 +1,5 @@
1
#!/usr/bin/env bash
2
3
-
4
set -euo pipefail
5
6
project_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
@@ -16,9 +15,8 @@ fi
16
15
git submodule update --init --recursive --quiet
17
18
# 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"
+brew bundle --file="$project_dir/Brewfile.brews" || true
+brew bundle --file="$project_dir/Brewfile.casks" || true
22
23
# Link up the dot files
24
"$project_dir/dotbot/bin/dotbot" -d "$project_dir" \
0 commit comments