Style fix

This commit is contained in:
Anatoli Babenia 2023-11-23 18:12:12 +03:00
parent 4fed4529d3
commit bfbea8be26

View File

@ -50,7 +50,8 @@ module Homebrew
end
def write_formula!
raise "name should not be empty" if @name.to_s == ''
raise "name should not be empty" if @name.to_s == ""
path = @tap.new_formula_path(@name)
raise "#{path} already exists" if path.exist?