Skip to content

Commit

Permalink
Merge pull request #28 from mierzwid/auto_pswd_decode
Browse files Browse the repository at this point in the history
Auto pswd decode
  • Loading branch information
Krystian Panek authored Nov 27, 2019
2 parents 7417e65 + d20e54e commit 71a89f0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=4.0.1
version=4.1.0
release.useAutomaticVersion=true

kotlin.version=1.3.50
Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion src/main/kotlin/com/neva/gradle/fork/ForkExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ open class ForkExtension(val project: Project, val props: PropsExtension) {
Properties().apply {
load(file.bufferedReader())
}.forEach { name, value ->
project.extensions.extraProperties.set(name.toString(), value)
project.extensions.extraProperties.set(name.toString(), props.encryptor.decrypt(value as String?))
}
}

Expand Down

0 comments on commit 71a89f0

Please sign in to comment.