Skip to content

Commit

Permalink
Fix detekt style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lesteenman authored and mpetuska committed Jul 1, 2024
1 parent 2f759c6 commit bcaa5a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public abstract class NpmPublishTask : NpmExecTask() {
if (reg.password.isPresent) {
val password = reg.password.get()
val encoded = Base64.getEncoder().encodeToString(password.toByteArray(Charsets.UTF_8))
add("--//$repo:_password=${encoded}")
add("--//$repo:_password=$encoded")
}
if (d) add("--dry-run")
if (tag.isPresent) add("--tag=${tag.get()}")
Expand Down

0 comments on commit bcaa5a0

Please sign in to comment.