Skip to content
Snippets Groups Projects
Commit b3d8e8ce authored by Juan Ignacio Ubeira's avatar Juan Ignacio Ubeira
Browse files

Using 'doLast' instead of '<<' for clean task in docs.

parent e2ef89df
No related branches found
No related tags found
No related merge requests found
...@@ -37,8 +37,10 @@ task docs(type: Exec, dependsOn: [copySphinxConf, javadoc]) { ...@@ -37,8 +37,10 @@ task docs(type: Exec, dependsOn: [copySphinxConf, javadoc]) {
commandLine 'make', 'html' commandLine 'make', 'html'
} }
task clean << { task clean {
doLast {
ant.delete dir: 'build' ant.delete dir: 'build'
ant.delete file: 'src/main/sphinx/conf.py' ant.delete file: 'src/main/sphinx/conf.py'
} }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment