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

package commands

import (
	"runtime"
)

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