mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			320 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			320 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !windows
 | |
| 
 | |
| package commands
 | |
| 
 | |
| import (
 | |
| 	"runtime"
 | |
| )
 | |
| 
 | |
| func getPlatform() *Platform {
 | |
| 	return &Platform{
 | |
| 		os:                   runtime.GOOS,
 | |
| 		shell:                "bash",
 | |
| 		shellArg:             "-c",
 | |
| 		escapedQuote:         "'",
 | |
| 		openCommand:          "open {{filename}}",
 | |
| 		fallbackEscapedQuote: "\"",
 | |
| 	}
 | |
| }
 |