Moved README.html to docs.

This commit is contained in:
Erik C. Thauvin 2017-06-07 15:56:26 -07:00
parent 0f223fd254
commit 22819033ea
5 changed files with 26 additions and 58 deletions

View file

@ -219,7 +219,12 @@ task release(dependsOn: ['wrapper', 'clean', 'deploy']) {
task pandoc(type: Exec) {
group = 'Documentation'
def pandoc_args = ['--from', 'markdown_github', '--to', 'html5', '-s', '-c', 'github-pandoc.css', '-o', 'README.html', 'README.md']
def pandoc_args = ['--from', 'markdown_github',
'--to', 'html5',
'-s',
'-c', 'github-pandoc.css',
'-o', 'docs/README.html',
'README.md']
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
commandLine(['cmd', '/c', 'pandoc'] + pandoc_args)
} else {