18 lines
340 B
Ruby
18 lines
340 B
Ruby
![]() |
# typed: false
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
module Homebrew
|
||
|
module API
|
||
|
module Analytics
|
||
|
class << self
|
||
|
sig { returns(String) }
|
||
|
def analytics_api_path
|
||
|
return generic_analytics_api_path if Homebrew::EnvConfig.force_homebrew_on_linux?
|
||
|
|
||
|
"analytics-linux"
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|