File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ import (
2121)
2222
2323const (
24- JFConfigDirName = ".jfrog"
25- JFConfigFileName = "config.yml"
24+ JfConfigDirName = ".jfrog"
25+ JfConfigFileName = "config.yml"
2626 ApplicationRootYML = "application"
2727 Key = "key"
2828)
@@ -279,7 +279,7 @@ func ReadJFrogApplicationKeyFromConfigOrEnv() (applicationKeyValue string) {
279279}
280280
281281func getApplicationKeyFromConfig () string {
282- configFilePath := filepath .Join (JFConfigDirName , JFConfigFileName )
282+ configFilePath := filepath .Join (JfConfigDirName , JfConfigFileName )
283283 vConfig , err := project .ReadConfigFile (configFilePath , project .YAML )
284284 if err != nil {
285285 log .Debug ("error reading config file: %v" , err )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
1111)
1212
1313func TestReadJFrogApplicationKeyFromConfigOrEnv (t * testing.T ) {
14- configFilePath := filepath .Join (JFConfigDirName , JFConfigFileName )
14+ configFilePath := filepath .Join (JfConfigDirName , JfConfigFileName )
1515
1616 // Test cases
1717 tests := []struct {
You can’t perform that action at this time.
0 commit comments