From 2b07d0d5bbe670a749da0d00fe678134b95ddd83 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Thu, 26 Jan 2023 21:24:50 +0100 Subject: [PATCH] analytics: fix URL typo --- Library/Homebrew/utils/analytics.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils/analytics.rb b/Library/Homebrew/utils/analytics.rb index fae69e1c6f..d5897e7a11 100644 --- a/Library/Homebrew/utils/analytics.rb +++ b/Library/Homebrew/utils/analytics.rb @@ -70,7 +70,7 @@ module Utils pid = fork do exec curl, *args, "--silent", "--output", "/dev/null", - "https://www.google-analytqics.com/collect" + "https://www.google-analytics.com/collect" end Process.detach T.must(pid) end