Skip to content

Commit

Permalink
updates to jfrog-cli-core
Browse files Browse the repository at this point in the history
  • Loading branch information
chanti529 committed Apr 5, 2021
1 parent 6edd4d9 commit 04f4c14
Show file tree
Hide file tree
Showing 5 changed files with 322 additions and 8 deletions.
5 changes: 3 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
## 1.0.0 (December 8, 2020)
- Initial release.
## 1.0.1 (April 5, 2021)
- Second release with updates to latest version of cli-core

4 changes: 2 additions & 2 deletions commands/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ func parseCommonFlags(c *components.Context, conf *service.RepoStatConfiguration
return nil
}

func getTargetArtifactoryConfig(serverName string) (*config.ArtifactoryDetails, error) {
return config.GetArtifactorySpecificConfig(serverName, true, false)
func getTargetArtifactoryConfig(serverName string) (*config.ServerDetails, error) {
return config.GetSpecificConfig(serverName, true, false)
}

func getIntFlagValue(c *components.Context, flagName string) (int, error) {
Expand Down
9 changes: 6 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
module github.com/chanti529/repostats

go 1.14
go 1.16

require (
github.com/cheynewallace/tabby v1.1.0
github.com/jfrog/jfrog-cli-core v1.1.2
github.com/jfrog/jfrog-client-go v0.16.0
github.com/frankban/quicktest v1.7.2 // indirect
github.com/jfrog/jfrog-cli-core v1.5.0
github.com/jfrog/jfrog-client-go v0.21.0
github.com/mholt/archiver v2.1.0+incompatible // indirect
github.com/pierrec/lz4 v2.3.0+incompatible // indirect
)
Loading

0 comments on commit 04f4c14

Please sign in to comment.