We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5717ca4 commit 9df5624Copy full SHA for 9df5624
jfrog-cli/artifactory/utils/utils.go
@@ -21,11 +21,11 @@ import (
21
)
22
23
func GetJfrogSecurityDir() (string, error) {
24
- confPath, err := config.GetJfrogHomeDir()
+ homeDir, err := config.GetJfrogHomeDir()
25
if err != nil {
26
return "", err
27
}
28
- return filepath.Join(confPath, "security"), nil
+ return filepath.Join(homeDir, "security"), nil
29
30
31
func GetEncryptedPasswordFromArtifactory(artifactoryAuth *auth.ArtifactoryDetails) (string, error) {
0 commit comments