11 lines
167 B
Go
11 lines
167 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: `\"`,
|
|
}
|
|
}
|