Skip to content

Commit

Permalink
Merge pull request #754 from ndw/publish2
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ndw committed Feb 9, 2019
2 parents 069885c + 24ee16c commit ad3a90e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Expand Up @@ -87,15 +87,15 @@ task copy_core_schemas(dependsOn: [ "buildspecs" ], type: Copy) {
from "build/core30.rng", "build/xproc.rng", "build/xproc.rnc",
"build/xproc10.rng", "build/xproc10.rnc", "build/xproc30.rng",
"build/xproc30.rnc"
into "build/etc/"
doFirst { mkdir "$buildDir/etc" }
into "build/dist/etc/"
doFirst { mkdir "$buildDir/dist/etc" }
}

task copy_xproc_build(dependsOn: [ "buildspecs" ], type: Copy) {
from "xproc/build/"
exclude "xinclude.xml", "examples/**", "graphics/**", "glossary.xml"
into "build/etc/xproc/"
doFirst { mkdir "$buildDir/etc/xproc" }
into "build/dist/etc/xproc/"
doFirst { mkdir "$buildDir/dist/etc/xproc" }
}

// ======================================================================
Expand Down

0 comments on commit ad3a90e

Please sign in to comment.