File tree Expand file tree Collapse file tree
src/main/kotlin/com/cognifide/gradle/aem/vlt Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments