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

func GetPlatform() *Platform {
	return &Platform{
		OS:       "windows",
		Shell:    "cmd",
		ShellArg: "/c",
	}
}