summaryrefslogtreecommitdiffstats
path: root/pkg/commands/os_windows.go
blob: 8fa9ce1c2fabf69eff432fec61d0e5b4deb2ae80 (plain)
1
2
3
4
5
6
7
8
9
10
11
package commands

func getPlatform() *Platform {
	return &Platform{
		os:                   "windows",
		shell:                "cmd",
		shellArg:             "/c",
		escapedQuote:         `\"`,
		fallbackEscapedQuote: "\\'",
	}
}