From c7aa613b8eea19e75c16a5904190341fee7860b0 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 29 Jun 2022 15:30:18 +0100 Subject: [PATCH] brew style --fix For https://github.com/Homebrew/brew/pull/13477 --- lib/bundle/installer.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bundle/installer.rb b/lib/bundle/installer.rb index 74cdd2379..d59922cb4 100644 --- a/lib/bundle/installer.rb +++ b/lib/bundle/installer.rb @@ -53,7 +53,7 @@ def install(entries, global: false, file: nil, no_lock: false, no_upgrade: false end unless failure.zero? - puts Formatter.error "Homebrew Bundle failed! "\ + puts Formatter.error "Homebrew Bundle failed! " \ "#{failure} Brewfile #{Bundle::Dsl.pluralize_dependency(failure)} failed to install." if (lock = Bundle::Locker.lockfile(global: global, file: file)) && lock.exist? puts Formatter.error("Check for differences in your #{lock.basename}!") @@ -63,7 +63,7 @@ def install(entries, global: false, file: nil, no_lock: false, no_upgrade: false Bundle::Locker.lock(entries, global: global, file: file, no_lock: no_lock) - puts Formatter.success "Homebrew Bundle complete! "\ + puts Formatter.success "Homebrew Bundle complete! " \ "#{success} Brewfile #{Bundle::Dsl.pluralize_dependency(success)} now installed." true end