Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #131 from caarlos0/setup-osx-fixes
Browse files Browse the repository at this point in the history
Fix issues with OSX setup
  • Loading branch information
caarlos0 committed Jan 14, 2016
2 parents ee7ad4a + a30ea15 commit 406ccd8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions bin/dot_update
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ export ZSH="$HOME/.dotfiles"
# Install homebrew
"$ZSH/homebrew/install.sh" 2>&1

echo "› antibody update"
antibody update

# Upgrade homebrew
echo "› brew update"
brew update

echo "› antibody update"
antibody update

# Install software
echo "$ZSH/script/install"
"$ZSH/script/install"
10 changes: 5 additions & 5 deletions script/install
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ set -e

cd "$(dirname "$0")"/..

# Run Homebrew through the Brewfile
echo "› brew bundle"
brew bundle

# find the installers and run them iteratively
find . -name install.sh | egrep -v "homebrew|build" | while read installer
find . -name install.sh | egrep -v "build" | while read installer
do
echo "${installer}..."
sh -c "$installer"
done

# Run Homebrew through the Brewfile
echo "› brew bundle"
brew bundle

0 comments on commit 406ccd8

Please sign in to comment.