17 lines
		
	
	
		
			300 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			300 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # typed: false
 | |
| # frozen_string_literal: true
 | |
| 
 | |
| module Homebrew
 | |
|   module API
 | |
|     module Formula
 | |
|       class << self
 | |
|         def formula_api_path
 | |
|           return generic_formula_api_path if Homebrew::EnvConfig.force_homebrew_on_linux?
 | |
| 
 | |
|           "formula-linux"
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
