summaryrefslogtreecommitdiffstats
path: root/pkg/commands/os_default_platform.go
blob: 864b1f3c8b2c4ba0609bce7c6fddc8566963de7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// +build !windows

package commands

import (
	"runtime"
)

func getPlatform() *Platform {
	return &Platform{
		os:                   runtime.GOOS,
		catCmd:               "cat",
		shell:                "bash",
		shellArg:             "-c",
		escapedQuote:         "'",
		openCommand:          "open {{filename}}",
		openLinkCommand:      "open {{link}}",
		fallbackEscapedQuote: "\"",
	}
}