Skip to content

Commit

Permalink
Remove redundant log
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <[email protected]>
  • Loading branch information
sverdlov93 committed Sep 23, 2024
1 parent b3b3976 commit 754dc1b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build/npm/v2-jf/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/npm/v2-jf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jfrog-cli-v2-jf",
"version": "2.68.0",
"version": "2.69.0",
"description": "🐸 Command-line interface for JFrog Artifactory, Xray, Distribution, Pipelines and Mission Control 🐸",
"homepage": "https://github.com/jfrog/jfrog-cli",
"preferGlobal": true,
Expand Down
2 changes: 1 addition & 1 deletion build/npm/v2/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/npm/v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jfrog-cli-v2",
"version": "2.68.0",
"version": "2.69.0",
"description": "🐸 Command-line interface for JFrog Artifactory, Xray, Distribution, Pipelines and Mission Control 🐸",
"homepage": "https://github.com/jfrog/jfrog-cli",
"preferGlobal": true,
Expand Down
1 change: 1 addition & 0 deletions npm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ func testNpm(t *testing.T, isLegacy bool) {
assert.NoError(t, err)
return
}
log.Info("npm version:", npmVersion.GetVersion())
isNpm7 := isNpm7(npmVersion)

// Temporarily change the cache folder to a temporary folder - to make sure the cache is clean and dependencies will be downloaded from Artifactory
Expand Down
2 changes: 1 addition & 1 deletion utils/cliutils/cli_consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "time"

const (
// General CLI constants
CliVersion = "2.68.0"
CliVersion = "2.69.0"
ClientAgent = "jfrog-cli-go"

// CLI base commands constants:
Expand Down
9 changes: 4 additions & 5 deletions utils/tests/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -1812,12 +1812,11 @@ func GetNpmDeployedArtifacts(isNpm7 bool) []string {
}

func GetNpmArtifactName(isNpm7, isScoped bool) string {
if isScoped {
return "@jscope/jfrog-cli-tests-=1.0.0.tgz"
}
if isNpm7 {
if isScoped {
return "@jscope/jfrog-cli-tests-=1.0.0.tgz"
} else {
return "jfrog-cli-tests-v1.0.0.tgz"
}
return "jfrog-cli-tests-v1.0.0.tgz"
}
return "jfrog-cli-tests-1.0.0.tgz"
}
Expand Down

0 comments on commit 754dc1b

Please sign in to comment.