Skip to content

Commit

Permalink
Changed password to be char array
Browse files Browse the repository at this point in the history
Signed-off-by: Ledina Hido-Evans <[email protected]>
  • Loading branch information
ledina committed Aug 5, 2020
1 parent 8ca7cfd commit 626fe58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/ibm/cics/cbgp/DeployBundleTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ open class DeployBundleTask : DefaultTask() {
@Input
val username = bundleExtension.deploy.username
@Input
val password = bundleExtension.deploy.password
val password = bundleExtension.deploy.password.toCharArray()
@Input
val insecure = bundleExtension.deploy.insecure

Expand Down

0 comments on commit 626fe58

Please sign in to comment.