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

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