mirror of
https://github.com/google/gops.git
synced 2025-02-19 19:59:55 +02:00
On Go ≥ 1.13 the os package has os.ConfigDir (https://golang.org/pkg/os/#UserConfigDir) which returns the default root directory to use for user-specific configuration data. Use this in internal.ConfigDir if available, while still making sure that any directory specified in GOPS_CONFIG_DIR takes precedence.
20 lines
339 B
Go
20 lines
339 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build go1.13
|
|
|
|
package internal
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func getOSUserConfigDir() string {
|
|
configDir, err := os.UserConfigDir()
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
return configDir
|
|
}
|