github.com/fluffynuts/lazygit@v0.8.1/pkg/commands/os_windows.go (about)

     1  package commands
     2  
     3  func getPlatform() *Platform {
     4  	return &Platform{
     5  		os:                   "windows",
     6  		shell:                "cmd",
     7  		shellArg:             "/c",
     8  		escapedQuote:         `\"`,
     9  		fallbackEscapedQuote: "\\'",
    10  	}
    11  }