1
0
Fork 0
mirror of https://github.com/caddyserver/xcaddy.git synced 2025-04-18 11:21:59 +02:00
xcaddy/internal/utils/environment.go

14 lines
243 B
Go
Raw Normal View History

package utils
import "os"
// GetGo returns the go executable to use depending on what
// is set in the XCADDY_WHICH_GO environment variable.
func GetGo() string {
g := os.Getenv("XCADDY_WHICH_GO")
if g == "" {
return "go"
}
return g
}