Skip to content

Commit 2021cd7

Browse files
author
krystian.panek
committed
Release 2.0.6
1 parent 1aa2e55 commit 2021cd7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group 'com.cognifide.gradle'
9-
version '2.0.6-SNAPSHOT'
9+
version '2.0.6'
1010
description = 'Gradle AEM Plugin'
1111
defaultTasks = ['clean', 'publishToMavenLocal']
1212

src/main/kotlin/com/cognifide/gradle/aem/AemConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ open class AemConfig(project: Project) : Serializable {
205205
* Global options which are being applied to any Vault related command like 'aemVault' or 'aemCheckout'.
206206
*/
207207
@Input
208-
var vaultGlobalOptions: String = "--credentials \${instance.credentials}"
208+
var vaultGlobalOptions: String = "--credentials {{instance.credentials}}"
209209

210210
/**
211211
* Specify characters to be used as line endings when cleaning up checked out JCR content.

src/main/kotlin/com/cognifide/gradle/aem/vlt/VltCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class VltCommand(val project: Project) {
3333
logger.info("JCR content directory to be checked out does not exist: ${contentDir.absolutePath}")
3434
}
3535

36-
raw("checkout --force --filter \${filter} \${instance.httpUrl}/crx/server/crx.default")
36+
raw("checkout --force --filter {{filter}} {{instance.httpUrl}}/crx/server/crx.default")
3737
}
3838

3939
fun raw(command: String) {

0 commit comments

Comments
 (0)