Skip to content

Commit

Permalink
Remove unwanted double spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Pohl committed May 18, 2022
1 parent 2884915 commit 4dd84a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ open class HiddenSecretsPlugin : Plugin<Project> {
@Input
fun getKeyNameParam(): String {
val chars = ('a'..'z') + ('A'..'Z')
// Default random key name
// Default random key name
var keyName = List(DEFAULT_KEY_NAME_LENGTH) { chars.random() }.joinToString("")
if (project.hasProperty(KEY_NAME)) {
// From command line
Expand Down Expand Up @@ -194,7 +194,7 @@ open class HiddenSecretsPlugin : Plugin<Project> {
object : Action<Copy?> {
@TaskAction
override fun execute(copy: Copy) {
// in the case of buildSrc dir
// in the case of buildSrc dir
copy.from(project.zipTree(javaClass.protectionDomain.codeSource.location!!.toExternalForm()))
println("Unzip jar to $tmpFolder")
copy.into(tmpFolder)
Expand Down

0 comments on commit 4dd84a8

Please sign in to comment.