CLICKHOUSE-3047: copy docs txts to public too

This commit is contained in:
Ivan Blinkov 2017-06-01 21:30:42 +03:00
parent aca2700d59
commit 9f38621cdc

View File

@ -49,7 +49,13 @@ gulp.task('reference', [], function () {
.pipe(gulp.dest(outputDir))
});
gulp.task('docs', [], function () {
gulp.task('docstxt', [], function () {
run('cd ' + docsDir + '; make');
return gulp.src(paths.docs + 'txt')
.pipe(gulp.dest(outputDir + '/docs'))
});
gulp.task('docs', ['docstxt'], function () {
run('cd ' + docsDir + '; make');
return gulp.src(paths.docs)
.pipe(gulp.dest(outputDir + '/../docs'))