diff options
| author | Markus Reiter | 2017-04-21 14:13:09 +0200 |
|---|---|---|
| committer | GitHub | 2017-04-21 14:13:09 +0200 |
| commit | 12fe8957499f80d2ae74102d9222cec8fd81ce43 (patch) | |
| tree | 57302dcf94b9e3a870e1d2d28143c7b9e765f510 /Library | |
| parent | 2be7999878702554f1e1b5f4118978e670e6156c (diff) | |
| parent | a27a82c19653862a9099a13d0b66ccc9b3285194 (diff) | |
| download | brew-12fe8957499f80d2ae74102d9222cec8fd81ce43.tar.bz2 | |
Merge pull request #2516 from Arcank/extraneous-brace
Remove extraneous }
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/cli/doctor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/doctor.rb b/Library/Homebrew/cask/lib/hbc/cli/doctor.rb index 6b2f4caab..031f78824 100644 --- a/Library/Homebrew/cask/lib/hbc/cli/doctor.rb +++ b/Library/Homebrew/cask/lib/hbc/cli/doctor.rb @@ -92,7 +92,7 @@ module Hbc def self.render_staging_location(path) path = Pathname.new(user_tilde(path.to_s)) if !path.exist? - "#{path} #{error_string "error: path does not exist"}}" + "#{path} #{error_string "error: path does not exist"}" elsif !path.writable? "#{path} #{error_string "error: not writable by current user"}" else |
