Skip to content

Commit

Permalink
main: tap homebrew/core
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidd6 authored Feb 22, 2023
1 parent 02e79d9 commit 0a4c212
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,12 @@ def read_brew(*args)
git 'config', '--global', 'user.name', user_name
git 'config', '--global', 'user.email', user_email

# Tap the tap if desired
brew 'tap', tap unless tap.blank?
# Tap the correct tap
if tap.blank?
brew 'tap', 'homebrew/core'
else
brew 'tap', tap
end

# Append additional PR message
message = if message.blank?
Expand Down

0 comments on commit 0a4c212

Please sign in to comment.