Skip to content

Commit

Permalink
[build] remove unnecessary file copy
Browse files Browse the repository at this point in the history
  • Loading branch information
h1romas4 committed Oct 4, 2023
1 parent 3aab16a commit 07e0f1d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,10 @@ task docs(dependsOn: [asciidoctor, asciidoctorPdf, cleanDocs]) doLast {
from 'build/docs/asciidocPdf/index.pdf'
into 'docs/'
}
// Copy images generated by asciidoctor-diagram to docs directory for index.html
// Copy images to docs directory for index.html
copy {
from 'build/docs/asciidoc/'
include 'Chapter*/images/*'
into 'docs'
}
// Copy images created by the user to the docs directory for index.html
copy {
from 'src/docs/asciidoc/'
include 'Chapter*/images/*'
into 'docs'
}
}

0 comments on commit 07e0f1d

Please sign in to comment.