From cf598aaf5ed532256ba4a9da80a11618dbae6515 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Fri, 16 Feb 2024 09:29:45 +0300 Subject: [PATCH] formula_creator: Remove unused GitHub property --- Library/Homebrew/formula_creator.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/formula_creator.rb b/Library/Homebrew/formula_creator.rb index 274ee848ca..9b3ddbe4db 100644 --- a/Library/Homebrew/formula_creator.rb +++ b/Library/Homebrew/formula_creator.rb @@ -56,10 +56,8 @@ module Homebrew when %r{github\.com/(\S+)/(\S+)\.git} @user = Regexp.last_match(1) @head = true - @github = true when %r{github\.com/(\S+)/(\S+)/(archive|releases)/} @user = Regexp.last_match(1) - @github = true end end