Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &

# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
if ! command -v brew >/dev/null 2>&1; then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
Expand Down
4 changes: 2 additions & 2 deletions datastores.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &

# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
if ! command -v brew >/dev/null 2>&1; then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
Expand All @@ -31,4 +31,4 @@ brew install caskroom/cask/brew-cask
brew cask install --appdir="/Applications" mysqlworkbench

# Remove outdated versions from the cellar.
brew cleanup
brew cleanup
2 changes: 1 addition & 1 deletion web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &

# Check for Homebrew,
# Install if we don't have it
if test ! $(which brew); then
if ! command -v brew >/dev/null 2>&1; then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
Expand Down