10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| if [[ "$HOMEBREW_CCCFG" = *s* ]]
 | |
| then
 | |
|   # Fix issue with sed barfing on unicode characters on Mountain Lion
 | |
|   unset LC_ALL
 | |
|   export LC_CTYPE="C"
 | |
| fi
 | |
| exec /usr/bin/sed "$@"
 | 
