Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Reentrant script #35

Closed
wants to merge 6 commits into from
Closed
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
6 changes: 3 additions & 3 deletions mac
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ log_info "Installing Postgres, a good open source relational database ..."
brew install postgresql@14

log_info "Starting Postgres ..."
brew services start postgresql@14
brew services restart postgresql@14

log_info "Installing Redis, a good key-value database ..."
brew install redis

log_info "Starting Redis ..."
brew services start redis
brew services restart redis

log_info "Installing and linking ImageMagick, to crop and resize images ..."
brew install imagemagick
Expand Down Expand Up @@ -89,7 +89,7 @@ log_info "Installing coreutils ..."
ruby_version="2.7.3"

log_info "Installing Ruby $ruby_version ..."
rbenv install "$ruby_version"
rbenv install -s "$ruby_version"

log_info "Setting $ruby_version as global default Ruby ..."
rbenv global "$ruby_version"
Expand Down