Skip to content

Commit

Permalink
Remove redundant log
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Sverdlov <michaelsv@jfrog.com>
  • Loading branch information
sverdlov93 committed Sep 24, 2024
1 parent 79892b9 commit 86f4f3b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions utils/tests/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -1812,11 +1812,12 @@ func GetNpmDeployedArtifacts(isNpm7 bool) []string {
}

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

0 comments on commit 86f4f3b

Please sign in to comment.