Skip to content

Commit 9aab1f0

Browse files
author
krystian.panek
committed
Bug fixed
1 parent 8fea095 commit 9aab1f0

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • src/main/kotlin/com/cognifide/gradle/aem/vlt

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class VltApp(val instance: AemInstance, val project: Project) : VaultFsApp() {
1616
fun checkout(project: Project, config: AemConfig) {
1717
val contentDir = File(config.determineContentPath(project))
1818
if (!contentDir.exists()) {
19-
project.logger.info("JCR content directory to be checkout out does not exist: ${contentDir.absolutePath}")
19+
project.logger.info("JCR content directory to be checked out does not exist: ${contentDir.absolutePath}")
2020
}
2121

2222
val instance = AemInstance.filter(project, config, AemInstance.FILTER_AUTHOR).first()
@@ -27,10 +27,9 @@ class VltApp(val instance: AemInstance, val project: Project) : VaultFsApp() {
2727
if (filter.exists()) {
2828
vltApp.executeCommand(listOf(CheckoutTask.COMMAND, "-f", filter.absolutePath) + cmdArgs)
2929
} else {
30-
vltApp.executeCommand(listOf(CheckoutTask.COMMAND + cmdArgs))
30+
vltApp.executeCommand(listOf(CheckoutTask.COMMAND) + cmdArgs)
3131
}
3232
}
33-
3433
}
3534

3635
init {

0 commit comments

Comments
 (0)