12 lines
		
	
	
		
			174 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			174 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class LinuxRequirement < Requirement
 | |
|   fatal true
 | |
| 
 | |
|   satisfy(build_env: false) { OS.linux? }
 | |
| 
 | |
|   def message
 | |
|     "Linux is required."
 | |
|   end
 | |
| end
 | 
