Moved README.html to docs.

This commit is contained in:
Erik C. Thauvin 2017-06-07 16:32:44 -07:00
parent 18fb2c0bdc
commit 3dd301baf2
10 changed files with 22 additions and 15 deletions

View file

@ -203,7 +203,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 {