From b52e23c3ff0c5eae96410e7642afab187a56e788 Mon Sep 17 00:00:00 2001 From: Izaak Beekman Date: Tue, 14 May 2019 12:03:06 -0400 Subject: [PATCH] Fix audit errors in dev-cmd/bump-revision.rb - Method alignment was bad across line break in 3 places. --- Library/Homebrew/dev-cmd/bump-revision.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/dev-cmd/bump-revision.rb b/Library/Homebrew/dev-cmd/bump-revision.rb index 5c94e5871c..4141eb6469 100644 --- a/Library/Homebrew/dev-cmd/bump-revision.rb +++ b/Library/Homebrew/dev-cmd/bump-revision.rb @@ -15,9 +15,9 @@ module Homebrew present, "revision 1" will be added. EOS switch "-n", "--dry-run", - description: "Print what would be done rather than doing it." + description: "Print what would be done rather than doing it." flag "--message=", - description: "Append the provided to the default commit message." + description: "Append the provided to the default commit message." switch :force switch :quiet @@ -76,7 +76,7 @@ module Homebrew else formula.path.parent.cd do safe_system "git", "commit", "--no-edit", "--verbose", - "--message=#{message}", "--", formula.path + "--message=#{message}", "--", formula.path end end end