From c4787a0a8b315e296fe4523b7e50c392eb07b8a5 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Wed, 24 Feb 2021 15:06:06 -0800 Subject: [PATCH] pr-upload: Fix a typo affecting Internet Archive --- Library/Homebrew/dev-cmd/pr-upload.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/pr-upload.rb b/Library/Homebrew/dev-cmd/pr-upload.rb index f82645f2d8..6e9ac110ef 100644 --- a/Library/Homebrew/dev-cmd/pr-upload.rb +++ b/Library/Homebrew/dev-cmd/pr-upload.rb @@ -52,7 +52,7 @@ module Homebrew def archive?(bottles_hash) @archive ||= bottles_hash.values.all? do |bottle_hash| - bottle_hash["bottle"]["root_url"].start_with? "https://archive.com/" + bottle_hash["bottle"]["root_url"].start_with? "https://archive.org/" end end