commands/config_unix.go (18 lines of code) (raw):

//go:build aix || android || darwin || dragonfly || freebsd || hurd || illumos || linux || netbsd || openbsd || solaris package commands import ( "os" "path/filepath" "gitlab.com/gitlab-org/gitlab-runner/helpers/homedir" ) var ROOTCONFIGDIR = "/etc/gitlab-runner" func getDefaultConfigDirectory() string { hd := homedir.New() if os.Getuid() == 0 { return ROOTCONFIGDIR } else if homeDir := hd.Get(); homeDir != "" { return filepath.Join(homeDir, ".gitlab-runner") } else if currentDir := hd.GetWDOrEmpty(); currentDir != "" { return currentDir } panic("Cannot get default config file location") }