Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scw/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func GetConfigPath() string {

// getConfigV2FilePath returns the path to the v2 config file
func getConfigV2FilePath() (string, bool) {
configDir, err := getScwConfigDir()
configDir, err := GetScwConfigDir()
if err != nil {
return "", false
}
Expand All @@ -79,8 +79,8 @@ func getConfigV1FilePath() (string, bool) {
return filepath.Clean(filepath.Join(path, ".scwrc")), true
}

// getScwConfigDir returns the path to scw config folder
func getScwConfigDir() (string, error) {
// GetScwConfigDir returns the path to scw config folder
func GetScwConfigDir() (string, error) {
if xdgPath := os.Getenv(xdgConfigDirEnv); xdgPath != "" {
return filepath.Join(xdgPath, "scw"), nil
}
Expand Down