Skip to content

Commit

Permalink
Push works.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheroliv committed Dec 14, 2024
1 parent 2fbe408 commit 3a28ddf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions formation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,18 @@ tasks.getByName<AsciidoctorJRevealJSTask>(TASK_ASCIIDOCTOR_REVEALJS) {
setTag("3.9.1")
}
}
val OFFICE = "office"
val SLIDES = "slides"
val IMAGES = "images"
revealjsOptions {
"..$sep..${sep}office${sep}slides"
"..$sep..$sep$OFFICE$sep$SLIDES"
.let(::File)
.let(::setSourceDir)
baseDirFollowsSourceFile()
resources {
from("$sourceDir${sep}images") {
from("$sourceDir$sep$IMAGES") {
include("**")
into("images")
into(IMAGES)
}
}
mapOf(
Expand Down

0 comments on commit 3a28ddf

Please sign in to comment.